14 lines
193 B
Plaintext
14 lines
193 B
Plaintext
page Home {
|
|
layout = "public"
|
|
|
|
functions {
|
|
function handleConfirm(value) {
|
|
console.log(value)
|
|
}
|
|
}
|
|
|
|
view {
|
|
<LegacyModal @confirm='handleConfirm(event.detail)' />
|
|
}
|
|
}
|