10 lines
144 B
Plaintext

class {
onCreate() {
this.state = { count:0 }
}
increment() {
this.state.count++;
}
}
<div>${state.count}</div>