1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| <script setup lang="ts">
| import { $t } from '@/locales';
|
| defineOptions({
| name: 'GlobalLogo'
| });
|
| interface Props {
| /** Whether to show the title */
| showTitle?: boolean;
| }
|
| withDefaults(defineProps<Props>(), {
| showTitle: true
| });
| </script>
|
| <template>
| <RouterLink to="/" class="w-full flex-center nowrap-hidden">
| <SystemLogo class="fill-primary text-30px" />
| <h2 v-show="showTitle" class="pl-12px text-16px text-primary font-bold transition duration-300 ease-in-out">
| {{ $t('system.title') }}
| </h2>
| </RouterLink>
| </template>
|
| <style scoped></style>
|
|