forked from opentiny/tiny-vue
22 lines
490 B
Vue
22 lines
490 B
Vue
<template>
|
|
<tiny-popover
|
|
placement="top-start"
|
|
title="标题"
|
|
width="200"
|
|
trigger="hover"
|
|
:popper-options="popperOption"
|
|
content="这是一段内容。"
|
|
>
|
|
<template #reference>
|
|
<tiny-button>悬浮我触发</tiny-button>
|
|
</template>
|
|
</tiny-popover>
|
|
</template>
|
|
|
|
<script setup lang="jsx">
|
|
import { ref } from 'vue'
|
|
import { Popover as TinyPopover, Button as TinyButton } from '@opentiny/vue'
|
|
|
|
const popperOption = ref({ bubbling: true })
|
|
</script>
|