Files
swingmusic-extended/src/components/LeftSidebar/index.vue
T
geoffrey45 7f344b51db move the Routes enum to router/routes.ts
+ fix context menu not being normalized
+ fix nav bar padding-right on no sidebar
2023-01-13 18:13:49 +03:00

20 lines
477 B
Vue

<template>
<div class="l-sidebar no-scroll">
<div class="withlogo">
<Logo />
<Navigation />
</div>
<NowPlayingImage v-if="settings.use_np_img" />
</div>
</template>
<script setup lang="ts">
import Navigation from "@/components/LeftSidebar/Navigation.vue";
import Logo from "@/components/Logo.vue";
import NowPlayingImage from "./NowPlayingImg.vue";
import useSettingsStore from "@/stores/settings";
const settings = useSettingsStore();
</script>