ruoyi-plus-soybean/src/components/common/SystemLogo.vue

17 lines
273 B
Vue
Raw Normal View History

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