Files
damonyuan 7badc8ae0f feat 同步前端代码
feat 同步PC代码
feat 增加1.9DB
feat 同步逻辑
2024-08-29 00:24:37 +08:00

12 lines
335 B
Vue

<template>
<NuxtLink v-if="appStore.getWebsiteConfig.pc_logo" class="flex" to="/">
<img :src="appStore.getWebsiteConfig.pc_logo" class="h-[26px]" />
</NuxtLink>
</template>
<script lang="ts" setup>
import { useAppStore } from '~~/stores/app'
const appStore = useAppStore()
</script>
<style lang="scss" scoped></style>