first commit

This commit is contained in:
2021-03-03 11:08:00 +08:00
parent b3de4f58aa
commit 706e69fd77
10 changed files with 208 additions and 32 deletions

View File

@@ -16,7 +16,11 @@ const routes = [
// 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('../views/About.vue')
},
{
path:"/login",
component: ()=> import("@/views/Login.vue")
}
]
@@ -26,4 +30,6 @@ const router = new VueRouter({
routes
})
export default router