forked from vueComponent/ant-design-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplacement.vue
43 lines (37 loc) · 1.07 KB
/
placement.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<docs>
---
order: 28
title:
zh-CN: 弹出位置
en-US: Popup Placement
---
## zh-CN
可以通过 `placement` 手动指定弹出的位置。
## en-US
You can manually specify the position of the popup via `placement`.
</docs>
<template>
<a-radio-group v-model:value="placement">
<a-radio-button value="topLeft">topLeft</a-radio-button>
<a-radio-button value="topRight">topRight</a-radio-button>
<a-radio-button value="bottomLeft">bottomLeft</a-radio-button>
<a-radio-button value="bottomRight">bottomRight</a-radio-button>
</a-radio-group>
<br />
<br />
<a-select
v-model:value="value"
style="width: 120px"
:dropdown-match-select-width="false"
:placement="placement"
>
<a-select-option value="HangZhou">HangZhou #310000</a-select-option>
<a-select-option value="NingBo">NingBo #315000</a-select-option>
<a-select-option value="WenZhou">WenZhou #325000</a-select-option>
</a-select>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
const placement = ref('topLeft' as const);
const value = ref('HangZhou');
</script>