feat: 重新提交因为git hooks被回滚的代码

This commit is contained in:
gaoyunqi
2024-02-23 20:36:59 +08:00
parent b5bdb36c75
commit 96ed35405b
6 changed files with 157 additions and 30 deletions

View File

@ -1,11 +1,11 @@
<template>
<img :src="logoImg" width="208" style="height: 64px" />
<img :src="logoImg" width="208" style="height: 64px; transform: scale(0.8)" />
</template>
<script lang="ts" setup>
import logo from '/@/assets/images/design/logo.png';
import { useAppStore } from '/@/store/modules/app';
const appStore = useAppStore();
import logo from '/@/assets/images/design/logo.png';
import { useAppStore } from '/@/store/modules/app';
const appStore = useAppStore();
const logoConfig = appStore.getLogoConfig;
const logoImg = logoConfig.designerLogoUrl || logo;
const logoConfig = appStore.getLogoConfig;
const logoImg = logoConfig.designerLogoUrl || logo;
</script>