fix: 🐛 组件命名调整引发导入问题修复
This commit is contained in:
@@ -22,10 +22,7 @@
|
||||
<UserProfile />
|
||||
|
||||
<!-- 设置面板 -->
|
||||
<div
|
||||
v-if="defaultSettings.showSettings"
|
||||
@click="settingStore.settingsVisible = true"
|
||||
>
|
||||
<div v-if="defaultSettings.showSettings" @click="settingStore.settingsVisible = true">
|
||||
<SvgIcon icon-class="setting" />
|
||||
</div>
|
||||
</div>
|
||||
@@ -36,8 +33,8 @@ import { DeviceEnum } from "@/enums/DeviceEnum";
|
||||
|
||||
import { useAppStore, useSettingsStore } from "@/store";
|
||||
|
||||
import UserProfile from "@/layout/components/NavBar/components/UserProfile.vue";
|
||||
import Notification from "@/layout/components/NavBar/components/Notification.vue";
|
||||
import UserProfile from "./UserProfile.vue";
|
||||
import Notification from "./Notification.vue";
|
||||
|
||||
const appStore = useAppStore();
|
||||
const settingStore = useSettingsStore();
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
import { LayoutEnum } from "@/enums/LayoutEnum";
|
||||
import { useSettingsStore, usePermissionStore, useAppStore } from "@/store";
|
||||
|
||||
import NavbarRight from "../Navbar/components/NavbarRight.vue";
|
||||
import NavbarRight from "../NavBar/components/NavbarRight.vue";
|
||||
|
||||
const appStore = useAppStore();
|
||||
const settingsStore = useSettingsStore();
|
||||
|
||||
Reference in New Issue
Block a user