mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-14 22:03:41 +08:00
24 lines
417 B
Vue
24 lines
417 B
Vue
<template>
|
|
<div :style="{ color }">
|
|
<svg-fill-logo v-if="fill" />
|
|
<svg-logo v-else />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { SvgLogo, SvgFillLogo } from './components';
|
|
|
|
interface Props {
|
|
/** logo是否填充 */
|
|
fill?: boolean;
|
|
/** logo的主题颜色 */
|
|
color?: string;
|
|
}
|
|
|
|
withDefaults(defineProps<Props>(), {
|
|
fill: false,
|
|
color: '#409EFF'
|
|
});
|
|
</script>
|
|
<style scoped></style>
|