Show how to add a map view through typescript

This commit is contained in:
Eli Ribble 2026-03-21 18:13:40 +00:00
parent 0126d24242
commit 1e67c0090d
No known key found for this signature in database
7 changed files with 254 additions and 5 deletions

View file

@ -1,4 +1,5 @@
import { createApp } from 'vue';
import App from './app.vue';
import 'maplibre-gl/dist/maplibre-gl.css';
createApp(App).mount('#app');