24 lines
337 B
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>
|