feat: 새 부대편성 페이지 (#223)

Reviewed-on: https://storage.hided.net/gitea/devsam/core/pulls/223
This commit was merged in pull request #223.
This commit is contained in:
2022-07-27 18:01:41 +09:00
parent 308b1f2348
commit a0dee353b5
19 changed files with 1397 additions and 410 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')