update header with dropdown for secondary pages & add missing basic routes and pages

This commit is contained in:
axolotle
2021-03-10 16:30:58 +01:00
parent 965112ddbb
commit 9ffc2bf167
5 changed files with 73 additions and 18 deletions
+13 -1
View File
@@ -9,6 +9,18 @@ export default [
component: Home
},
{
name: 'introduction',
path: '/intro',
component: () => import(/* webpackChunkName: "intro" */ '@/pages/Introduction')
},
{
name: 'contact',
path: '/contact',
component: () => import(/* webpackChunkName: "contact" */ '@/pages/Contact')
},
{
name: 'library',
path: '/library',
@@ -54,7 +66,7 @@ export default [
{
name: 'map',
path: '/map',
component: () => import(/* webpackChunkName: "blog" */ '@/pages/Map')
component: () => import(/* webpackChunkName: "test" */ '@/pages/Map')
},
{