Files
WRNexusJS/integration/fixtures/v0.5-legacy-app/app/components/LegacyModal.wrn
T
2026-08-01 01:09:58 +05:30

24 lines
358 B
Plaintext

component LegacyModal {
props {
title = "Confirm"
@event confirm = function
}
state open = false
functions {
function show() {
open = true
}
function confirm() {
$emit("confirm", { accepted: true })
}
}
view {
<button @click='show()'>Open</button>
<button @click='confirm()'>Confirm</button>
}
}