ant-design/components/mention/demo/multilines.md
2016-07-18 16:58:52 +08:00

435 B

order title
4 多行

zh-CN

多行模式,多行模式必须指定高度。

en-US

Multi lines mode.


import { Mention } from 'antd';

function onChange(value) {
  console.log(value);
}

ReactDOM.render(
  <Mention
    style={{ width: '100%', height: 200 }}
    onChange={onChange}
    suggestions={['afc163', 'benjycui', 'yiminghe', 'jljsj33', 'dqaria', 'RaoHai']}
    multiLines
  />,
  mountNode
);