mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
15 lines
274 B
Plaintext
15 lines
274 B
Plaintext
class {
|
|
onMount() {
|
|
window.helloInstances = window.helloInstances || [];
|
|
window.helloInstances.push(this);
|
|
}
|
|
|
|
onInput(input) {
|
|
this.state = {
|
|
name: input.name
|
|
}
|
|
}
|
|
}
|
|
|
|
<div.hello key="root">Hello ${state.name}</div>
|