Add support for /watch/, /embed/, /w/, /v/, /shorts/

This commit is contained in:
FireMasterK
2021-06-07 23:08:19 +05:30
parent 20ad39b327
commit 5e791a51f5
2 changed files with 27 additions and 5 deletions

View File

@@ -3,7 +3,26 @@ import { createRouter, createWebHistory } from "vue-router";
const routes = [
{
path: "/watch",
name: "Watch",
component: () => import("../components/WatchVideo.vue"),
},
{
path: "/watch/:v",
component: () => import("../components/WatchVideo.vue"),
},
{
path: "/embed/:v",
component: () => import("../components/WatchVideo.vue"),
},
{
path: "/w/:v",
component: () => import("../components/WatchVideo.vue"),
},
{
path: "/v/:v",
component: () => import("../components/WatchVideo.vue"),
},
{
path: "/shorts/:v",
component: () => import("../components/WatchVideo.vue"),
},
{