ant-design/components/mention/demo/multilines.md
2016-09-23 10:14:57 +08:00

516 B

order title
4
zh-CN en-US
多行 Multi-lines Mode

zh-CN

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

en-US

Multi lines mode.

import { Mention } from 'antd';
const { toString } = Mention;

function onChange(editorState) {
  console.log(toString(editorState));
}

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