mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
15 lines
248 B
Plaintext
15 lines
248 B
Plaintext
import helloComponent from './components/hello.marko'
|
|
|
|
class {
|
|
onCreate() {
|
|
this.helloReceived = false;
|
|
}
|
|
|
|
handleHello() {
|
|
this.helloReceived = true;
|
|
}
|
|
}
|
|
|
|
<div>
|
|
<${helloComponent} on-hello("handleHello")/>
|
|
</div> |