15 lines
249 B
JavaScript
15 lines
249 B
JavaScript
class CustomElement extends HTMLElement {
|
|
static get observedAttributes() {
|
|
return [];
|
|
}
|
|
attributeChangedCallback(attrName, oldValue, newValue) {
|
|
}
|
|
connectedCallback() {
|
|
}
|
|
disconnectedCallback() {
|
|
}
|
|
}
|
|
export {
|
|
CustomElement
|
|
};
|