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