mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
11 lines
237 B
Plaintext
11 lines
237 B
Plaintext
<macro|{ type, value }| name="value">
|
|
${type}: ${value}
|
|
</macro>
|
|
|
|
<macro|{ value }| name="display">
|
|
$ const type = typeof value;
|
|
<value type=type value=value/>
|
|
<span>: ${type}</span>
|
|
</macro>
|
|
|
|
<display value=input.value/> |