Files
core/hwe/ts/PageTroop.vue
T
2022-07-27 15:15:42 +09:00

13 lines
257 B
Vue

<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>