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.
30 lines
433 B
30 lines
433 B
5 years ago
|
---
|
||
|
order: 6
|
||
|
title:
|
||
|
zh-CN: 自动大小
|
||
|
en-US: autoSize
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
自适应内容高度。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Height autoSize.
|
||
|
|
||
|
```jsx
|
||
|
import { Mentions } from 'antd';
|
||
|
|
||
|
const { Option } = Mentions;
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<Mentions autoSize style={{ width: '100%' }}>
|
||
|
<Option value="afc163">afc163</Option>
|
||
|
<Option value="zombieJ">zombieJ</Option>
|
||
|
<Option value="yesmeck">yesmeck</Option>
|
||
|
</Mentions>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|