You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
644 B
36 lines
644 B
3 years ago
|
<docs>
|
||
|
---
|
||
|
order: 4
|
||
|
title:
|
||
|
zh-CN: 向上展开
|
||
|
en-US: Placemen
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
向上展开建议。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Change the suggestions placement.
|
||
|
|
||
|
</docs>
|
||
|
<template>
|
||
|
<a-mentions v-model:value="value" placement="top">
|
||
|
<a-mentions-option value="afc163">afc163</a-mentions-option>
|
||
|
<a-mentions-option value="zombieJ">zombieJ</a-mentions-option>
|
||
|
<a-mentions-option value="yesmeck">yesmeck</a-mentions-option>
|
||
|
</a-mentions>
|
||
|
</template>
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, ref } from 'vue';
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
const value = ref<string>('');
|
||
|
return {
|
||
|
value,
|
||
|
};
|
||
|
},
|
||
|
});
|
||
|
</script>
|