mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
16 lines
513 B
Plaintext
16 lines
513 B
Plaintext
div
|
|
button ref="button" onMouseMove('handleButtonMouseMove') onClick("handleButtonClick")
|
|
button [
|
|
ref="ok"
|
|
type="button"
|
|
onClick('handleButtonClick', {type: 'ok'})
|
|
onMouseMove('handleButtonMouseMove', {type: 'ok'})
|
|
]
|
|
-- OK
|
|
button [
|
|
ref="cancel"
|
|
type="button"
|
|
onClick('handleButtonClick', {type: 'cancel'})
|
|
onMouseMove('handleButtonMouseMove', {type: 'cancel'})
|
|
]
|
|
-- Cancel |