Login and subscriptions. (#256)

* WIP login and subscriptions.

* Add a working feed and unsubscribe button.

* Allow importing subscriptions from Google Takeout, NewPipe and Invidious.
This commit is contained in:
FireMasterK
2021-07-17 04:26:41 +05:30
committed by GitHub
parent 4cb06c3569
commit 0992e1e96d
10 changed files with 448 additions and 1 deletions

View File

@@ -29,6 +29,26 @@ const routes = [
path: "/:path(channel|user|c)/:channelId/:videos?",
component: () => import("../components/Channel.vue"),
},
{
path: "/login",
name: "Login",
component: () => import("../components/LoginPage.vue"),
},
{
path: "/register",
name: "Register",
component: () => import("../components/RegisterPage.vue"),
},
{
path: "/feed",
name: "Feed",
component: () => import("../components/FeedPage.vue"),
},
{
path: "/import",
name: "Import",
component: () => import("../components/ImportPage.vue"),
},
];
const router = createRouter({