mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-22 03:26:38 +08:00
23 lines
368 B
Vue
23 lines
368 B
Vue
<template>
|
|
<div>
|
|
<svg-fill-logo v-if="fill" :color="color" />
|
|
<svg-logo v-else :color="color" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { SvgLogo, SvgFillLogo } from './components';
|
|
|
|
defineProps({
|
|
fill: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: '#409EFF'
|
|
}
|
|
});
|
|
</script>
|
|
<style scoped></style>
|