Refactor entire app structure

This commit is contained in:
Kevin Thomas
2021-07-21 17:20:44 -07:00
parent 5f120e12bc
commit 3572d69cba
16 changed files with 3176 additions and 2042 deletions

View File

@@ -11,12 +11,12 @@ const routes = [
component: Home
},
{
path: '/login',
name: 'LoginView',
path: '/about',
name: 'About',
// 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/Login.vue')
component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
}
]