Cat/elements/cat-vbox.html

13 lines
262 B
HTML

<script>
customElements.define('cat-vbox', class extends HTMLElement {
constructor() {
super();
if (this.hasAttribute('flex')) {
this.style.flex = this.getAttribute('flex');
}
}
connectedCallback() {
}
});
</script>