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