AUR0701
Template compilation error in element "{{0:name}}": the root <template> cannot be a local element template.
Last updated
Was this helpful?
Was this helpful?
<!-- parent-component.html -->
<template>
<div>Parent Content</div>
<!-- Define a local element -->
<template as-custom-element="local-element">
<div>This is the local element content</div>
</template>
<!-- Use the local element -->
<local-element></local-element>
</template>