class CustomTopbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` 管理员 `; } } customElements.define('custom-topbar', CustomTopbar);