feat: publicize doc implemetation
This commit is contained in:
43
one/docs/demo/prompt-box/base.vue
Normal file
43
one/docs/demo/prompt-box/base.vue
Normal file
@@ -0,0 +1,43 @@
|
||||
<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 } from 'veui'
|
||||
import toast from 'veui/managers/toast'
|
||||
|
||||
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>
|
||||
Reference in New Issue
Block a user