-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
It more of a suggestion than a issue. We have a scenario where we have grouped multiple web components in a single file. But while specifying the respective file url in the elementConfig, its working only if we add multiple entries for the each component with the same file url.
const plugins: LazyElementModuleOptions = {
elementConfigs:[
{ tag: component1', url: 'assets/component-file.js'},
{ tag: 'component2', url: 'assets/component-file.js'},
{ tag: 'component3', url: 'assets/component-file.js'},
]
}
If a solution exists for the above, please let me know.
If solution doesn't exists, my suggestions would be:
- Making the tag as a pattern match
{ tag: 'component-*', url: 'assets/component-file.js'} - Match the element also with a attribute instead of the element-tag
<component-one tag-attr *axLazyElement></component-one>
{ attribute-tag: 'tag-attr', url: 'assets/component-file.js'}
Metadata
Metadata
Assignees
Labels
No labels