我正在像这样使用我的发光元素
<my-header>MyHeading</my-header>
我有我的 lit 元素的渲染方法:
render() {
return html`
<h3><slot></slot></h3>
`;
}
这是完美的工作。现在,我希望将 lit 元素类中的内部内容(即“MyHeading”)作为一个值(不渲染)。有什么方法可以获取该 innerHTML 或作为文本?
注意:我的用例可以是设置渲染内容的另一个属性,例如
render() {
return html`
<h3 id="${//How to get that 'MyHeading' here??}"><slot></slot></h3>
`;
}
是否有可能获得内部内容作为价值?