AUR0709
Template compilation error: local element template needs to be defined directly under root of element "yyyy".
Error message
Parameters
Error explanation
Common causes
How to fix
Example of Incorrect Usage:
<!-- my-component.html -->
<template>
<div>
<!-- Error: Local element definition is nested inside a div -->
<template as-custom-element="local-one">
<span>Content for local-one</span>
</template>
</div>
<local-one></local-one>
</template>Example of Correct Usage:
Last updated
Was this helpful?