AUR0703
Template compilation error: template controller "yyyy" is invalid on element surrogate.
Last updated
Was this helpful?
Was this helpful?
<!-- my-component.html -->
<!-- Error: "if.bind" is invalid on the root template -->
<template if.bind="someCondition">
<div>Hello</div>
</template>
<!-- Error: "repeat.for" is invalid on the root template -->
<template repeat.for="item of items">
<div>${item}</div>
</template><!-- my-component.html -->
<template>
<!-- Apply template controllers to elements inside -->
<div if.bind="someCondition">Hello</div>
<div repeat.for="item of items">${item}</div>
</template>
<!-- Usage in another component -->
<!-- Apply template controller where the component is used -->
<my-component if.bind="shouldShowComponent"></my-component>