Add loader

This commit is contained in:
Dave Gallant
2022-08-08 02:15:13 +00:00
parent 3173b47951
commit 4ed267df0b
7 changed files with 20392 additions and 871 deletions

View File

@@ -1,7 +1,10 @@
import { createApp } from 'vue'
import App from './App.vue'
import { createApp } from "vue";
import App from "./App.vue";
import "bootstrap/dist/css/bootstrap.min.css";
import "bootstrap/dist/js/bootstrap.min.js";
createApp(App).mount('#app')
import "./style.css";
import "./xess.css";
createApp(App).mount("#app");