AUR0711
Template compilation error: the attribute 'property' is missing in <bindable> in local element "yyyy"
Last updated
Was this helpful?
Was this helpful?
<!-- my-component.html -->
<template>
<local-element message="Hello"></local-element>
<template as-custom-element="local-element">
<!-- Error: Missing 'property' attribute -->
<bindable attribute="message"></bindable>
<span>${message}</span>
</template>
</template><!-- my-component.html -->
<template>
<local-element message="Hello"></local-element>
<template as-custom-element="local-element">
<!-- Correct: 'property' attribute is present -->
<bindable property="message" attribute="message"></bindable>
<span>${message}</span>
</template>
</template>