forked from opentiny/tiny-vue
19 lines
348 B
Vue
19 lines
348 B
Vue
<template>
|
|
<tiny-popover placement="top-start" content="这是一段内容">
|
|
<template #reference>
|
|
<tiny-button>提示</tiny-button>
|
|
</template>
|
|
</tiny-popover>
|
|
</template>
|
|
|
|
<script>
|
|
import { Popover, Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyPopover: Popover,
|
|
TinyButton: Button
|
|
}
|
|
}
|
|
</script>
|