mIGRATED TO VUE

This commit is contained in:
Andrew
2023-01-30 16:58:48 +00:00
parent f53b7238c4
commit 1ec6fbd05e
29 changed files with 1739 additions and 1015 deletions

10
src/main.js Normal file
View File

@ -0,0 +1,10 @@
import { createApp } from 'vue'
import App from './App.vue'
import OpenLayersMap from 'vue3-openlayers'
import 'vue3-openlayers/dist/vue3-openlayers.css'
const app = createApp(App);
app.use(OpenLayersMap)
app.mount('#app')