🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
727 B

<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-avatar shape="square" size="large" />
</a-badge>
<a-badge :count="100">
<a-avatar shape="square" size="large" />
</a-badge>
<a-badge :count="99" :overflow-count="10">
<a-avatar shape="square" size="large" />
</a-badge>
<a-badge :count="1000" :overflow-count="999">
<a-avatar shape="square" size="large" />
</a-badge>
</template>