AUR0715
Template compilation error: the value of "as-custom-element" attribute cannot be empty for local element in element "yyyy"
Error message
Parameters
Error explanation
Common causes
How to fix
Example of Incorrect Usage:
<!-- my-component.html -->
<template>
<my-local-element></my-local-element>
<!-- Error: as-custom-element value is empty -->
<template as-custom-element="">
<div>Content</div>
</template>
</template>Example of Correct Usage:
Last updated
Was this helpful?