Commit 61b3b1eb9e3821c010f96e104edd1facc08a8dee

Authored by fengtao
1 parent 2f7c21a7

fix:回滚之前代码

1 <template> 1 <template>
2 <div class="anticon" :class="getAppLogoClass" @click="goHome"> 2 <div class="anticon" :class="getAppLogoClass" @click="goHome">
3 - <Image v-if="getLogo" :src="getLogo" />  
4 - <Image v-else src="/src/assets/images/logo.png" /> 3 + <img v-if="getLogo" :src="getLogo" />
  4 + <img v-else src="/src/assets/images/logo.png" />
5 <div class="ml-2 truncate md:opacity-100" :class="getTitleClass" v-show="showTitle"> 5 <div class="ml-2 truncate md:opacity-100" :class="getTitleClass" v-show="showTitle">
6 {{ getTitle }} 6 {{ getTitle }}
7 </div> 7 </div>
@@ -13,7 +13,6 @@ @@ -13,7 +13,6 @@
13 import { useMenuSetting } from '/@/hooks/setting/useMenuSetting'; 13 import { useMenuSetting } from '/@/hooks/setting/useMenuSetting';
14 import { useDesign } from '/@/hooks/web/useDesign'; 14 import { useDesign } from '/@/hooks/web/useDesign';
15 import { useUserStore } from '/@/store/modules/user'; 15 import { useUserStore } from '/@/store/modules/user';
16 - import { Image } from 'ant-design-vue';  
17 16
18 const props = defineProps({ 17 const props = defineProps({
19 /** 18 /**