mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-17 17:26:38 +08:00
17 lines
273 B
Vue
17 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>
|