edu/pc/layouts/components/header/logo.vue

12 lines
333 B
Vue
Raw Normal View History

2023-01-09 11:02:20 +00:00
<template>
2023-01-10 07:57:36 +00:00
<NuxtLink v-if="appStore.getWebsiteConfig.pcLogo" class="flex" to="/">
<img :src="appStore.getWebsiteConfig.pcLogo" class="h-[26px]" />
2023-01-09 11:02:20 +00:00
</NuxtLink>
</template>
<script lang="ts" setup>
import { useAppStore } from '~~/stores/app'
const appStore = useAppStore()
</script>
<style lang="scss" scoped></style>