(login) save login

This commit is contained in:
2021-03-17 23:25:58 +01:00
parent 6f5ea41824
commit 2faabb6c0e
13 changed files with 255 additions and 29 deletions

View File

@@ -9,6 +9,17 @@ const routes: Array<RouteRecordRaw> = [
component: () =>
import(/* webpackChunkName: "text-editor" */ '@/views/TextEditor.vue')
},
{
path: '/login',
name: 'Login',
component: () => import(/* webpackChunkName: "login" */ '@/views/Login.vue')
},
{
path: '/repo-list',
name: 'RepoList',
component: () =>
import(/* webpackChunkName: "repo-list" */ '@/views/RepoList.vue')
},
{
path: '/:user?/:repo?',
name: 'Home',