13 lines
257 B
Vue
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>
|