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

41 lines
850 B
Vue

<template>
<div>
<tiny-popover
placement="top-start"
title="标题"
width="200"
trigger="hover"
:open-delay="2000"
content="这是一段内容。"
>
<template #reference>
<tiny-button style="margin-right: 16px">两秒后打开</tiny-button>
</template>
</tiny-popover>
<tiny-popover
placement="top-start"
title="标题"
width="200"
trigger="hover"
:close-delay="2000"
content="这是一段内容。"
>
<template #reference>
<tiny-button style="margin-right: 16px">两秒后关闭</tiny-button>
</template>
</tiny-popover>
</div>
</template>
<script lang="jsx">
import { Popover, Button } from '@opentiny/vue'
export default {
components: {
TinyPopover: Popover,
TinyButton: Button
}
}
</script>