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

24 lines
337 B
Vue

<template>
<tiny-badge :value="2">
<template #default>
<span class="warning">自定义默认插槽</span>
</template>
</tiny-badge>
</template>
<script>
import { Badge } from '@opentiny/vue'
export default {
components: {
TinyBadge: Badge
}
}
</script>
<style scoped>
.warning {
color: #fa9841;
}
</style>