ant-design/components/mention/demo/multilines.md

32 lines
486 B
Markdown
Raw Normal View History

2016-07-04 10:31:27 +08:00
---
order: 4
title: 多行
---
## zh-CN
多行模式,多行模式必须指定高度。
## en-US
Multi lines mode.
````jsx
import { Mention } from 'antd';
2016-07-19 12:31:03 +08:00
const { toString } = Mention;
2016-07-04 10:31:27 +08:00
2016-07-19 12:31:03 +08:00
function onChange(editorState) {
console.log(toString(editorState));
2016-07-04 10:31:27 +08:00
}
ReactDOM.render(
<Mention
style={{ width: '100%', height: 200 }}
onChange={onChange}
suggestions={['afc163', 'benjycui', 'yiminghe', 'jljsj33', 'dqaria', 'RaoHai']}
multiLines
/>,
mountNode
);
````