mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
13 lines
228 B
Plaintext
13 lines
228 B
Plaintext
class {
|
|
onMount() {
|
|
this.detachEvent = undefined;
|
|
}
|
|
|
|
handleDetach(event, node) {
|
|
event.preventDefault();
|
|
this.detachEvent = event;
|
|
}
|
|
}
|
|
|
|
<div.root on-detach('handleDetach')>I'm here!</div>
|