UNPKG

willcore.ui

Version:

Simple, Fast And Powerful Client-Side HTML UI Framework.

13 lines (10 loc) 275 B
import { bindable } from "../binding/bindable.js"; class component extends bindable { constructor() { super({ function: 1 }, 0); } updateDOM(value) { this.element.setAttribute(this.propertyName, value); } } export { component };