tiny-vue/examples/sites/demos/mobile-first/app/popover/popover-placement.vue

68 lines
1.7 KiB
Vue

<template>
<div>
<div class="inline-block mr-32">
<tiny-popover
placement="top"
title="标题"
width="200"
trigger="hover"
content="这是一段内容,这是一段内容,这是一段内容,这是一段内容。"
>
<template #reference>
<tiny-button>悬浮有提示</tiny-button>
</template>
</tiny-popover>
</div>
<div class="inline-block mr-32">
<tiny-popover
placement="bottom"
title="标题"
width="200"
trigger="hover"
content="这是一段内容,这是一段内容,这是一段内容,这是一段内容。"
>
<template #reference>
<tiny-button>悬浮有提示</tiny-button>
</template>
</tiny-popover>
</div>
<div class="inline-block mr-32">
<tiny-popover
placement="left"
title="标题"
width="200"
trigger="hover"
content="这是一段内容,这是一段内容,这是一段内容,这是一段内容。"
>
<template #reference>
<tiny-button>悬浮有提示</tiny-button>
</template>
</tiny-popover>
</div>
<div class="inline-block mr-32">
<tiny-popover
placement="right"
title="标题"
width="200"
trigger="hover"
content="这是一段内容,这是一段内容,这是一段内容,这是一段内容。"
>
<template #reference>
<tiny-button>悬浮有提示</tiny-button>
</template>
</tiny-popover>
</div>
</div>
</template>
<script>
import { Popover, Button } from '@opentiny/vue'
export default {
components: {
TinyPopover: Popover,
TinyButton: Button
}
}
</script>