You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
632 B
29 lines
632 B
<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] lg:text-lg leading-[1] font-bold text-[#333]">{{ title }}</h1> |
|
</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>
|
|
|