金融产品设计及数字化营销沙盘

28 lines
594 B

2 years ago
<template>
<div class="flex items-center justify-center overflow-hidden">
<router-link class="whitespace-nowrap text-center" to="/">
<h1 v-if="!collapse" class="ml-1 text-[22px] leading-[1] font-bold text-[#333]">{{ title }}</h1>
2 years ago
</router-link>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import Settings from '@/settings';
export default defineComponent({
name: 'SidebarLogo',
props: {
collapse: {
type: Boolean,
required: true,
},
},
data() {
return {
title: Settings.title,
};
},
});
</script>