19 lines
595 B
Vue
19 lines
595 B
Vue
<template>
|
|
<div>
|
|
<tiny-button @click="boxVisibility = true" title="弹出 Dialog">弹出 Dialog</tiny-button>
|
|
<tiny-dialog-box v-model:visible="boxVisibility" center title="消息" width="30%">
|
|
<span>dialog-box 内容</span>
|
|
<template #footer>
|
|
<tiny-button type="primary" @click="boxVisibility = false">确 定</tiny-button>
|
|
</template>
|
|
</tiny-dialog-box>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { ref } from 'vue'
|
|
import { Button as TinyButton, DialogBox as TinyDialogBox } from '@opentiny/vue'
|
|
|
|
const boxVisibility = ref(false)
|
|
</script>
|