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