mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
20 lines
242 B
Markdown
20 lines
242 B
Markdown
# 可点击
|
|
|
|
- order: 2
|
|
|
|
用 a 标签进行包裹即可。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Badge } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<a href="#">
|
|
<Badge count={5}>
|
|
<span className="head-example"></span>
|
|
</Badge>
|
|
</a>
|
|
, mountNode);
|
|
````
|