Cat/elements/cat-checkbox.js

14 lines
277 B
JavaScript

class Checkbox extends HTMLElement {
static get observedAttributes() { return ['checked']; }
attributeChangedCallback(attr, oldValue, newValue) {
if (attr == 'checked') {
}
}
constructor() {
super();
}
}
customElements.define('cat-checkbox', Checkbox);