ant-design-vue/components/badge/demo/link.md

20 lines
283 B
Markdown
Raw Normal View History

2018-02-07 18:44:11 +08:00
<cn>
#### 可点击
用 a 标签进行包裹即可。
</cn>
<us>
#### Clickable
The badge can be wrapped with `a` tag to make it linkable.
</us>
```html
<template>
2018-03-09 17:50:33 +08:00
<a href="#">
<a-badge count="5">
<span class="head-example" />
</a-badge>
</a>
2018-02-07 18:44:11 +08:00
</template>
```