Add support for /c/ and /user/

This commit is contained in:
FireMasterK
2021-05-29 00:10:54 +05:30
parent c6cc796ea9
commit fcab0c9499
2 changed files with 20 additions and 3 deletions

View File

@@ -13,7 +13,17 @@ const routes = [
},
{
path: "/channel/:channelId",
name: "Channel",
name: "ChannelId",
component: () => import("../components/Channel.vue"),
},
{
path: "/c/:channelC",
name: "ChannelC",
component: () => import("../components/Channel.vue"),
},
{
path: "/user/:channelUser",
name: "ChannelUser",
component: () => import("../components/Channel.vue"),
},
{