tiny-vue_version0/examples/sites/demos/pc/app/popover/basic-usage.vue

19 lines
398 B
Vue

<template>
<tiny-popover placement="top-start" title="标题" content="这是一段内容。" width="200">
<template #reference>
<tiny-button>点击我提示</tiny-button>
</template>
</tiny-popover>
</template>
<script lang="jsx">
import { Popover, Button } from '@opentiny/vue'
export default {
components: {
TinyPopover: Popover,
TinyButton: Button
}
}
</script>