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