web-components
Installation
SKILL.md
Web Components
Native browser APIs for creating reusable, encapsulated custom HTML elements.
Quick Start
<!-- Use the component -->
<user-card name="Alice" role="Admin"></user-card>
<script>
class UserCard extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
}