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

19 lines
354 B
Markdown
Raw Normal View History

2018-01-26 05:48:20 +00:00
<cn>
#### 带徽标的头像
通常用于消息提示。
</cn>
<us>
#### With Badge
Usually used for messages remind.
</us>
```html
<template>
<div>
<span style="marginRight:24px"><a-badge count=1><a-avatar shape="square" icon="user" /></a-badge></span>
<a-badge dot><a-avatar shape="square" icon="user" /></a-badge>
</div>
</template>
```