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

30 lines
632 B

2 years ago
<template>
<div class="flex items-center justify-center overflow-hidden">
1 year ago
<router-link class="whitespace-nowrap text-center"
to="/">
<h1 v-if="!collapse"
class="ml-1 text-[22px] lg:text-lg 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>