mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
37 lines
492 B
Plaintext
37 lines
492 B
Plaintext
<c-template>
|
|
|
|
<c-if test="true">
|
|
A
|
|
</c-if>
|
|
<c-else>
|
|
B
|
|
</c-else>
|
|
,
|
|
<c-if test="false">
|
|
A
|
|
</c-if>
|
|
<c-else>
|
|
B
|
|
</c-else>
|
|
,
|
|
<c-if test="false">
|
|
A
|
|
</c-if>
|
|
<c-else-if test="false">
|
|
B
|
|
</c-else-if>
|
|
<c-else>
|
|
C
|
|
</c-else>
|
|
,
|
|
<div c-if="false">
|
|
A
|
|
</div>
|
|
<div c-else-if="false">
|
|
B
|
|
</div>
|
|
<div c-else="">
|
|
C
|
|
</div>
|
|
|
|
</c-template> |