我有一个 web 组件x-counter
,它在一个文件中。
const template = document.createElement('template');
template.innerHTML = `
<style>
button, p {
display: inline-block;
}
</style>
<button aria-label="decrement">-</button>
<p>0</p>
<button aria-label="increment">+</button>
`;
class XCounter extends HTMLElement {
set value(value) {
this._value = value;
this.valueElement.innerText = this._value;
}
get value() {
return this._value;
}
constructor() {
super();
this._value = 0;
this.root = this.attachShadow({ mode: 'open' });
this.root.appendChild(template.content.cloneNode(true));
this.valueElement = this.root.querySelector('p');
this.incrementButton = this.root.querySelectorAll('button')[1];
this.decrementButton = this.root.querySelectorAll('button')[0];
this.incrementButton
.addEventListener('click', (e) => this.value++);
this.decrementButton
.addEventListener('click', (e) => this.value--);
}
}
customElements.define('x-counter', XCounter);
这里模板被定义为使用 JavaScript 并且 html 内容被添加为内联字符串。有没有办法将模板与x-counter.html
文件、cssx-counter.css
和相应的 JavaScript 代码分开xcounter.js
并加载到 index.html 中?
我查找的每个示例都混合了 Web 组件。我想要关注点分离,但我不确定如何使用组件来做到这一点。你能提供一个示例代码吗?谢谢。