Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 433 Bytes

autoSize.md

File metadata and controls

29 lines (22 loc) · 433 Bytes
order title
6
zh-CN en-US
自动大小
autoSize

zh-CN

自适应内容高度。

en-US

Height autoSize.

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,
);