add settings page (frontend currently broken!)

This commit is contained in:
2023-05-31 12:00:27 +02:00
parent 619e24d332
commit bf4e85f6c1
7 changed files with 98 additions and 10 deletions

View File

@@ -10,10 +10,12 @@ const routes = [
{
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/AboutView.vue')
component: () => import( '../views/AboutView.vue' )
},
{
path: '/settings',
name: 'settings',
component: () => import( '../views/SettingsView.vue' )
}
]