mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 14:29:33 +08:00
ecb2eb6ede
* init * first demo * support empty * add loading support * add form sample * update form sample * omit value & defaultValue * add 2 rest demo * placement support * update docs * fix test * update docs * add test case * fix lint * follow textarea style * update docs style
30 lines
455 B
Markdown
30 lines
455 B
Markdown
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 向上展开
|
|
en-US: Placement
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
向上展开建议。
|
|
|
|
## en-US
|
|
|
|
Change the suggestions placement.
|
|
|
|
```jsx
|
|
import { Mentions } from 'antd';
|
|
|
|
const { Option } = Mentions;
|
|
|
|
ReactDOM.render(
|
|
<Mentions style={{ width: '100%' }} placement="top">
|
|
<Option value="afc163">afc163</Option>
|
|
<Option value="zombieJ">zombieJ</Option>
|
|
<Option value="yesmeck">yesmeck</Option>
|
|
</Mentions>,
|
|
mountNode,
|
|
);
|
|
```
|