This commit is contained in:
2022-07-27 15:15:42 +09:00
parent 308b1f2348
commit e55e73ab6f
4 changed files with 68 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import "@scss/troop.scss";
import { createApp } from 'vue'
import PageTroop from '@/PageTroop.vue';
import { BootstrapVue3, BToastPlugin } from 'bootstrap-vue-3'
import { auto500px } from "./util/auto500px";
import { htmlReady } from "./util/htmlReady";
import { insertCustomCSS } from "./util/customCSS";
auto500px();
htmlReady(() => {
insertCustomCSS();
});
createApp(PageTroop).use(BootstrapVue3).use(BToastPlugin).mount('#app')