forked from opentiny/tiny-vue
38 lines
781 B
Vue
38 lines
781 B
Vue
<template>
|
|
<div>
|
|
<tiny-popconfirm :title="title" :message="message" placement="bottom">
|
|
<template #reference>
|
|
<tiny-button>显示在下方</tiny-button>
|
|
</template>
|
|
</tiny-popconfirm>
|
|
<tiny-popconfirm :title="title" :message="message" placement="right" class="ml-8">
|
|
<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>
|
|
|
|
<style scoped>
|
|
.ml-8 {
|
|
margin-left: 8px;
|
|
}
|
|
</style>
|