mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
17 lines
268 B
Plaintext
17 lines
268 B
Plaintext
class {
|
|
onCreate() {
|
|
this.state = {
|
|
count: 0,
|
|
renderHello: true
|
|
};
|
|
}
|
|
}
|
|
|
|
<div.root>
|
|
[ROOT]
|
|
<span>
|
|
<if(state.renderHello)>
|
|
<hello key="hello" count=state.count/>
|
|
</if>
|
|
</span>
|
|
</div> |