tiny-vue_version0/examples/sites/demos/pc/app/badge/max.vue

14 lines
205 B
Vue

<template>
<tiny-badge :value="5" :max="2">最大值显示</tiny-badge>
</template>
<script>
import { Badge } from '@opentiny/vue'
export default {
components: {
TinyBadge: Badge
}
}
</script>