Add a loader

This commit is contained in:
Conor McNamara
2023-02-16 20:48:01 +00:00
parent a6dafabae5
commit 893573c1b1
4 changed files with 35 additions and 4 deletions

View File

@ -4,7 +4,10 @@ import App from './App.vue'
import OpenLayersMap from 'vue3-openlayers'
import 'vue3-openlayers/dist/vue3-openlayers.css'
import { LoadingPlugin } from 'vue-loading-overlay'
import 'vue-loading-overlay/dist/css/index.css'
const app = createApp(App);
app.use(OpenLayersMap)
app.use(LoadingPlugin)
app.mount('#app')