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

20 lines
313 B
Vue
Raw Normal View History

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