import { html, Component, live } from 'wkit' class App extends Component { foo = '' bar = { a: 333 } created() { // live = live.bind(this) } reset() { this.foo = '' this.bar.a = '666' this.$requestUpdate() } render() { return html`
${this.foo}
${this.bar.a}
` } } App.reg('app')