feat: publicize doc implemetation

This commit is contained in:
Justineo
2020-08-13 11:47:56 +08:00
parent 55b9b044f2
commit 1e5fcff6ad
372 changed files with 50636 additions and 0 deletions

View 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>