33 lines
708 B
Vue
33 lines
708 B
Vue
|
<docs>
|
|||
|
---
|
|||
|
order: 2
|
|||
|
title:
|
|||
|
zh-CN: 封顶数字
|
|||
|
en-US: Overflow Count
|
|||
|
---
|
|||
|
|
|||
|
## zh-CN
|
|||
|
|
|||
|
超过 `overflowCount` 的会显示为 `${overflowCount}+`,默认的 `overflowCount` 为 `99`。
|
|||
|
|
|||
|
## en-US
|
|||
|
|
|||
|
`${overflowCount}+` is displayed when count is larger than `overflowCount`. The default value of `overflowCount` is `99`.
|
|||
|
|
|||
|
</docs>
|
|||
|
|
|||
|
<template>
|
|||
|
<a-badge :count="99">
|
|||
|
<a href="#" class="head-example" />
|
|||
|
</a-badge>
|
|||
|
<a-badge :count="100">
|
|||
|
<a href="#" class="head-example" />
|
|||
|
</a-badge>
|
|||
|
<a-badge :count="99" :overflow-count="10">
|
|||
|
<a href="#" class="head-example" />
|
|||
|
</a-badge>
|
|||
|
<a-badge :count="1000" :overflow-count="999">
|
|||
|
<a href="#" class="head-example" />
|
|||
|
</a-badge>
|
|||
|
</template>
|