elements icon indicating copy to clipboard operation
elements copied to clipboard

Multiple components in single file

Open vinoth-sarsha opened this issue 3 years ago • 0 comments

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:

  1. Making the tag as a pattern match { tag: 'component-*', url: 'assets/component-file.js'}
  2. 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'}

vinoth-sarsha avatar Feb 17 '22 08:02 vinoth-sarsha