AUR0710
Template compilation error: bindable properties of local element "yyyy" template needs to be defined directly under <template>.
Error message
Parameters
Error explanation
Common causes
How to fix
Example of Incorrect Usage:
<!-- my-component.html -->
<template>
<local-element message="Hello"></local-element>
<template as-custom-element="local-element">
<div>
<!-- Error: <bindable> is nested inside a div -->
<bindable property="message"></bindable>
</div>
<span>${message}</span>
</template>
</template>Example of Correct Usage:
Last updated
Was this helpful?