|
|
@@ -2,6 +2,7 @@
|
|
|
import { ref, watch, computed } from "vue";
|
|
|
import { RouterView } from "vue-router";
|
|
|
import NavMenu from "@/components/NavMenu.vue";
|
|
|
+import Logo from "@/components/LogoComponent.vue";
|
|
|
import { useSideBarStore } from "@/stores/side-bar";
|
|
|
|
|
|
const sideBarStore = useSideBarStore();
|
|
|
@@ -31,6 +32,8 @@ watch(
|
|
|
<Transition name="slide-fade">
|
|
|
<img src="@/assets/logo.png" width="50" v-if="collapsed" />
|
|
|
<img src="@/assets/logo.png" width="120" v-else />
|
|
|
+ <!-- <Logo style="color: #0079C2" width="50px" v-if="collapsed" /> -->
|
|
|
+ <!-- <Logo style="color: #0079C2" width="120px" v-else /> -->
|
|
|
</Transition>
|
|
|
</div>
|
|
|
<NavMenu class="sider-nav" />
|
|
|
@@ -64,7 +67,7 @@ watch(
|
|
|
.sider-nav-bar-wrap {
|
|
|
height: 100vh;
|
|
|
.logo {
|
|
|
- height: 32px;
|
|
|
+ /* height: 32px; */
|
|
|
margin: 16px;
|
|
|
text-align: center;
|
|
|
}
|