save current view in map to url via hash, add about pages and such

This commit is contained in:
Will Freeman
2024-09-30 23:23:10 -05:00
parent 6d8b3ba42f
commit ff0aff59f4
11 changed files with 265 additions and 64 deletions
+11 -1
View File
@@ -16,7 +16,17 @@ const router = createRouter({
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue')
}
},
{
path: '/what-is-an-alpr',
name: 'what-is-an-alpr',
component: () => import('../views/WhatIsAnALPRView.vue')
},
{
path: '/report',
name: 'report',
component: () => import('../views/ReportView.vue')
},
]
})