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

24 lines
488 B
Markdown
Raw Normal View History

2018-02-07 10:44:11 +00:00
<cn>
#### 基本
简单的徽章展示,当 `count``0` 时,默认不显示,但是可以使用 `showZero` 修改为显示。
</cn>
<us>
#### basic
Simplest Usage. Badge will be hidden when `count` is `0`, but we can use `showZero` to show it.
</us>
```html
<template>
<div>
2018-03-09 09:50:33 +00:00
<a-badge count="5">
2018-02-07 10:44:11 +00:00
<a href="#" class="head-example"></a>
</a-badge>
2018-03-09 09:50:33 +00:00
<a-badge count="0" showZero>
2018-02-07 10:44:11 +00:00
<a href="#" class="head-example"></a>
</a-badge>
</div>
</template>
```