Add signin view, fix linting

This commit is contained in:
Kevin Thomas
2021-07-21 17:58:29 -07:00
parent 3572d69cba
commit b4e791a21c
5 changed files with 73 additions and 6 deletions

View File

@@ -11,12 +11,12 @@ const routes = [
component: Home
},
{
path: '/about',
name: 'About',
path: '/login',
name: 'Signin',
// route level code-splitting
// this generates a separate chunk (about.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
component: () => import(/* webpackChunkName: "about" */ '../views/Signin.vue')
}
]