OTM/src/template/module/view/toast.pug
sora-ext 7e0157880b
All checks were successful
continuous-integration/drone/push Build is passing
Update src/template/module/view/toast.pug
2025-03-10 17:29:33 +01:00

14 lines
632 B
Plaintext

template
.overlay.text-dark(v-if="toast.data.show" @click="")
.popup.bg-white(@click.stop)
.row
.col-auto.text-huge {{ toast.data.title }}
.row(v-if="toast.data.desc")
.col-auto.text-medium {{ toast.data.desc }}
.row(v-if="toast.data.special")
.col-auto.text-medium
.input
input(v-model="toast.data.special")
.row.align
button.button.bg-white(@click="toast.data.func" v-if="toast.data.acceptText") {{ toast.data.acceptText }}
button.button.bg-white(@click="toast.data.show=false;" v-if="toast.data.cancelText") {{ toast.data.cancelText }}