mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
ecb2eb6ede
* init * first demo * support empty * add loading support * add form sample * update form sample * omit value & defaultValue * add 2 rest demo * placement support * update docs * fix test * update docs * add test case * fix lint * follow textarea style * update docs style
43 lines
614 B
Markdown
43 lines
614 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本使用
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
基本使用
|
|
|
|
## en-US
|
|
|
|
Basic usage.
|
|
|
|
```jsx
|
|
import { Mentions } from 'antd';
|
|
|
|
const { Option } = Mentions;
|
|
|
|
function onChange(value) {
|
|
console.log('Change:', value);
|
|
}
|
|
|
|
function onSelect(option) {
|
|
console.log('select', option);
|
|
}
|
|
|
|
ReactDOM.render(
|
|
<Mentions
|
|
style={{ width: '100%' }}
|
|
onChange={onChange}
|
|
onSelect={onSelect}
|
|
defaultValue="@afc163"
|
|
>
|
|
<Option value="afc163">afc163</Option>
|
|
<Option value="zombieJ">zombieJ</Option>
|
|
<Option value="yesmeck">yesmeck</Option>
|
|
</Mentions>,
|
|
mountNode,
|
|
);
|
|
```
|