add queue page

This commit is contained in:
geoffrey45
2022-08-28 15:37:46 +03:00
parent 2cb30e294f
commit ca211b6dcf
6 changed files with 56 additions and 18 deletions
+6
View File
@@ -12,6 +12,7 @@ import PlaylistList from "@/views/PlaylistList.vue";
import PlaylistView from "@/views/playlist/index.vue";
import SettingsView from "@/views/SettingsView.vue";
import SearchView from "@/views/Search.vue";
import QueueView from "@/views/QueueView.vue";
import { createRouter, createWebHashHistory } from "vue-router";
@@ -101,6 +102,11 @@ const routes = [
name: "SearchView",
component: SearchView,
},
{
path: "/queue",
name: "QueueView",
component: QueueView,
},
{
path: "/:pathMatch(.*)",
component: () => import("../views/NotFound.vue"),