wip: 세력 장수 준비

This commit is contained in:
2022-04-07 03:03:38 +09:00
parent 29c3a933e9
commit 94acf87695
5 changed files with 102 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
<template>
<BContainer id="container" :toast="{ root: true }" class="pageNationGeneral bg0">
<TopBackBar :title="title" />
<BottomBar />
</BContainer>
</template>
<script lang="ts" setup>
import TopBackBar from "@/components/TopBackBar.vue";
import BottomBar from "@/components/BottomBar.vue";
import { BContainer, useToast } from "bootstrap-vue-3";
import { unwrap } from "./util/unwrap";
const toasts = unwrap(useToast());
const title = '세력 장수';
</script>