tiny-vue/examples/sites/demos/pc/app/popconfirm/cancel-button.vue

27 lines
523 B
Vue

<template>
<div>
<tiny-popconfirm :title="title" :message="message" :cancel-button="false">
<template #reference>
<tiny-button>悬浮我提示</tiny-button>
</template>
</tiny-popconfirm>
</div>
</template>
<script>
import { Popconfirm, Button } from '@opentiny/vue'
export default {
components: {
TinyPopconfirm: Popconfirm,
TinyButton: Button
},
data() {
return {
title: '这是气泡标题',
message: '这是气泡提示框内容。'
}
}
}
</script>