static get template() {
return html`
<p>This content is from ChildClass.</p>
<p>${super.template}</p>
<p>Hello again from ChildClass.</p>
<p style='color:red'>[[partHtml]] <==== this should be 'hello'</p>
`;
}
get partHtml()
{
return "<span>hello</span>";
}
我想像partHtml
普通 HTML 一样被注入到模板中。
我知道 lit-element 中的不安全 HTML 可以做到这一点,但是 lit-element 不能使用super.render()
东西,它不像聚合物元素那样方便。