Add initial admin page with update feature

This commit is contained in:
Kevin Thomas
2021-08-05 23:39:07 -07:00
parent 790c1fda22
commit d0fa884d83
8 changed files with 197 additions and 6 deletions

View File

@@ -31,6 +31,11 @@ const routes = [
// 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/Signup.vue')
},
{
path: '/admin',
name: 'Admin',
component: () => import(/* webpackChunkName: "about" */ '../views/AdminPage.vue')
}
]