mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
14 lines
245 B
Plaintext
14 lines
245 B
Plaintext
<input type="checkbox" checked=data.checked>
|
|
|
|
<button disabled>Button</button>
|
|
|
|
<select>
|
|
<option value="${option.value}"
|
|
selected=option.selected
|
|
for(option in data.options)>
|
|
|
|
${option.value}
|
|
|
|
</option>
|
|
</select>
|