rename bg-black to bg-primary

+ rename BottomBar to NowPlayingRight
This commit is contained in:
geoffrey45
2022-08-19 22:14:23 +03:00
parent ade8edcba2
commit 79dcc61084
24 changed files with 53 additions and 55 deletions
+4 -3
View File
@@ -3,7 +3,7 @@
<router-link
v-for="menu in menus"
:key="menu.name"
:to="{ name: menu.route_name, params: menu.params }"
:to="{ name: menu.route_name, params: menu?.params }"
>
<div class="nav-button" id="home-button">
<div class="in">
@@ -19,11 +19,12 @@
import PlaylistSvg from "../../assets/icons/playlist.svg";
import FolderSvg from "../../assets/icons/folder.svg";
import SettingsSvg from "../../assets/icons/settings.svg";
import { Routes } from "@/composables/enums";
const menus = [
{
name: "playlists",
route_name: "Playlists",
route_name: Routes.playlists,
icon: PlaylistSvg,
},
{
@@ -34,7 +35,7 @@ const menus = [
},
{
name: "settings",
route_name: "SettingsView",
route_name: Routes.settings,
icon: SettingsSvg,
},
];