mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-24 13:30:19 +08:00
20 lines
311 B
Vue
20 lines
311 B
Vue
<template>
|
|
<icon-local-logo-fill v-if="fill" />
|
|
<icon-local-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>
|