use new df map

This commit is contained in:
Will Freeman
2026-04-05 10:34:28 -06:00
parent 2be27e551a
commit 1ab28c002d
9 changed files with 415 additions and 100 deletions
+1 -2
View File
@@ -1,6 +1,5 @@
import { createRouter, createWebHistory } from 'vue-router'
import Landing from '../views/Landing.vue'
import Map from '../views/Map.vue'
import { useHead } from '@unhead/vue'
const router = createRouter({
@@ -27,7 +26,7 @@ const router = createRouter({
{
path: '/map',
name: 'map',
component: Map,
component: () => import('../views/Map.vue'),
meta: {
title: 'ALPR Map | DeFlock'
}