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.
|
|
|
---
|
|
|
|
order: 5
|
|
|
|
title:
|
|
|
|
zh-CN: 向上展开
|
|
|
|
en-US: Placement
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
向上展开建议。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Change the suggestions placement.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Mentions } from 'antd';
|
|
|
|
|
|
|
|
const { Option } = Mentions;
|
|
|
|
|
|
|
|
export default () => (
|
|
|
|
<Mentions style={{ width: '100%' }} placement="top">
|
|
|
|
<Option value="afc163">afc163</Option>
|
|
|
|
<Option value="zombieJ">zombieJ</Option>
|
|
|
|
<Option value="yesmeck">yesmeck</Option>
|
|
|
|
</Mentions>
|
|
|
|
);
|
|
|
|
```
|