docs_vue2/one/docs/demo/prompt-box/base.vue
2021-09-16 19:23:58 +08:00

43 lines
681 B
Vue

<template>
<article>
<veui-button @click="open = true">
Prompt
</veui-button>
<veui-prompt-box
v-model="value"
title="Survey"
:open.sync="open"
@cancel="cancel"
@ok="ok"
>
What's your favorite food?
</veui-prompt-box>
</article>
</template>
<script>
import { PromptBox, Button, toast } from 'veui'
export default {
components: {
'veui-prompt-box': PromptBox,
'veui-button': Button
},
data () {
return {
value: '',
open: false
}
},
methods: {
ok () {
this.open = false
toast.info('Input: ' + (this.value || "''"))
},
cancel () {
toast.info('Canceled')
}
}
}
</script>