class DataCollection extends HTMLElement { constructor() { super(); this.attachShadow({ mode: 'open' }); } connectedCallback() { this.render(); } render() { this.shadowRoot.innerHTML = `
数据采集
数据采集组件内容(待实现)
`; } } customElements.define('data-collection', DataCollection);