14 lines
632 B
Plaintext
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 }} |