質問はほとんど自明です。
例:
function generateTemplate(tag) {
return html`
<${tag}
.some-prop=${1}
>
...
</${tag}>
`;
}
質問はほとんど自明です。
例:
function generateTemplate(tag) {
return html`
<${tag}
.some-prop=${1}
>
...
</${tag}>
`;
}
ここで言及したことを具体的に行う方法は 1 つではありませんが、ある程度近づける方法が 2 つあります。
const template = tag => {
if (tag === 'custom-component') {
return html`<custom-component></custom-component>`;
} else if (tag === 'other-component') {
return html`...`;
} else {
return html`<some-default></some-default>`;
}
};
import {unsafeHTML} from 'lit-html/directives/unsafe-html.js';
const template = unsafeContent => {
// bear in mind that this should only be done after sanitizing the content
return html`${unsafeHTML(unsafeContent)}`;
};
template('<my-component>Some content</my-component>');