Limitations
Table Family Elements
Breaks template:
html`<tr>${cellOne} ${cellTwo} some text</tr>`;Works fine:
html`<tr>${cellOne} ${cellTwo}</tr>`;Template Element
Breaks template:
html`
<custom-element>
<template>
<div class="${myClass}"></div>
</template>
<div>${content}</div>
</custom-element>
`;Works fine:
Last updated
Was this helpful?