2022-01-04 19:09:00 +08:00
|
|
|
<template>
|
2022-03-05 01:55:21 +08:00
|
|
|
<icon-custom-logo-fill v-if="fill" />
|
|
|
|
<icon-custom-logo v-else />
|
2022-01-04 19:09:00 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-07-10 14:02:00 +08:00
|
|
|
defineOptions({ name: 'SystemLogo' });
|
|
|
|
|
2022-01-04 19:09:00 +08:00
|
|
|
interface Props {
|
|
|
|
/** logo是否填充 */
|
|
|
|
fill?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
withDefaults(defineProps<Props>(), {
|
2022-04-01 14:47:57 +08:00
|
|
|
fill: false
|
2022-01-04 19:09:00 +08:00
|
|
|
});
|
|
|
|
</script>
|
2022-05-28 12:30:17 +08:00
|
|
|
|
2022-01-04 19:09:00 +08:00
|
|
|
<style scoped></style>
|