mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
20 lines
332 B
Plaintext
20 lines
332 B
Plaintext
class {
|
|
onCreate() {
|
|
this.state = {
|
|
swapped: false,
|
|
count: 0
|
|
};
|
|
}
|
|
}
|
|
|
|
<div.root>
|
|
<if(state.swapped)>
|
|
<world count=state.count/>
|
|
<hello count=state.count/>
|
|
</if>
|
|
<else>
|
|
<hello count=state.count/>
|
|
<world count=state.count/>
|
|
</else>
|
|
</div>
|