refac(WIP): 파일 위치 변경

This commit is contained in:
2021-12-22 02:06:40 +09:00
parent 95f079474e
commit 507fa102b9
25 changed files with 465 additions and 312 deletions
+7 -7
View File
@@ -11,7 +11,7 @@
<div class="row">
<div class="col-12 col-md-5">
장수 :
<GeneralSelect
<SelectGeneral
:cities="citiesMap"
:generals="generalList"
:troops="troops"
@@ -26,9 +26,9 @@
<b-button :pressed="!isGold" @click="isGold=false"></b-button>
</b-button-group>
</div>
<div class="col-10 col-md-4">
<div class="col-6 col-md-4">
금액 :
<AmountSelect
<SelectAmount
:amountGuide="amountGuide"
v-model="amount"
:maxAmount="maxAmount"
@@ -44,8 +44,8 @@
</template>
<script lang="ts">
import GeneralSelect from "@/processing/GeneralSelect.vue";
import AmountSelect from "@/processing/AmountSelect.vue";
import SelectGeneral from "@/processing/SelectGeneral.vue";
import SelectAmount from "@/processing/SelectAmount.vue";
import { defineComponent, ref } from "vue";
import { unwrap } from "@/util/unwrap";
import { Args } from "@/processing/args";
@@ -72,8 +72,8 @@ declare const procRes: {
export default defineComponent({
components: {
GeneralSelect,
AmountSelect,
SelectGeneral,
SelectAmount,
TopBackBar,
BottomBar,
},