18 lines
493 B
Vue
18 lines
493 B
Vue
<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> |