ant-design-vue/components/badge/demo/no-wrapper.md

24 lines
499 B
Markdown
Raw Normal View History

2018-02-07 10:44:11 +00:00
<cn>
#### 独立使用
不包裹任何元素即是独立使用,可自定样式展现。
在右上角的 badge 则限定为红色。
</cn>
<us>
#### Standalone
Used in standalone when children is empty.
</us>
2019-10-09 10:32:23 +00:00
```tpl
2018-02-07 10:44:11 +00:00
<template>
<div>
2018-03-09 09:50:33 +00:00
<a-badge count="25" />
2019-09-28 12:45:07 +00:00
<a-badge
count="4"
:numberStyle="{backgroundColor: '#fff', color: '#999', boxShadow: '0 0 0 1px #d9d9d9 inset'}"
/>
<a-badge count="109" :numberStyle="{backgroundColor: '#52c41a'} " />
2018-02-07 10:44:11 +00:00
</div>
</template>
```