mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
17 lines
279 B
Plaintext
17 lines
279 B
Plaintext
import Modal from "./modal.marko"
|
|
|
|
class {
|
|
onClick() {
|
|
this.clicked = true;
|
|
}
|
|
}
|
|
|
|
<${Modal}>
|
|
<@body>
|
|
<li>
|
|
<button type="button" key="button" on-click("onClick")>
|
|
Test link
|
|
</button>
|
|
</li>
|
|
</@body>
|
|
</> |