mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
19 lines
297 B
Plaintext
19 lines
297 B
Plaintext
class {
|
|
onCreate() {
|
|
this.name = "parent";
|
|
}
|
|
}
|
|
|
|
<macro|input| name="fragment">
|
|
<${input}/>
|
|
</macro>
|
|
|
|
<div key="root">
|
|
<fragment>
|
|
<fragment>
|
|
<child name="child-a"/>
|
|
</fragment>
|
|
</fragment>
|
|
<div.child-b/>
|
|
<child name="child-c"/>
|
|
</div> |