Files
soybean-admin/src/components/common/SystemLogo.vue
Soybean 8f6d6ce3cb refactor(styles): 代码格式
ISSUES CLOSED: \
2022-05-28 12:30:17 +08:00

18 lines
273 B
Vue

<template>
<icon-custom-logo-fill v-if="fill" />
<icon-custom-logo v-else />
</template>
<script lang="ts" setup>
interface Props {
/** logo是否填充 */
fill?: boolean;
}
withDefaults(defineProps<Props>(), {
fill: false
});
</script>
<style scoped></style>