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

32 lines
421 B
Markdown
Raw Normal View History

2016-07-04 10:31:27 +08:00
---
order: 0
title: 基本使用
---
## zh-CN
基本使用
## en-US
Basic usage.
````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
onChange={onChange}
defaultValue="@afc163"
suggestions={['afc163', 'benjycui', 'yiminghe', 'jljsj33', 'dqaria', 'RaoHai']}
/>,
mountNode
);
````