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
+12
View File
@@ -0,0 +1,12 @@
<template>
<div id="container">
<TopBackBar title="부대 편성" />
<BottomBar />
</div>
</template>
<script setup lang="ts">
import TopBackBar from "@/components/TopBackBar.vue";
import BottomBar from "@/components/BottomBar.vue";
</script>
+1
View File
@@ -37,6 +37,7 @@
"v_nationBetting": "v_nationBetting.ts",
"v_nationGeneral": "v_nationGeneral.ts",
"v_globalDiplomacy": "v_globalDiplomacy",
"v_troop": "v_troop.ts",
"v_vote": "v_vote.ts"
}
}
+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')