ant-design-vue/components/badge/demo/overflow.vue

33 lines
727 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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>