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