feat(wip): 세력 장수 작업 중

This commit is contained in:
2022-04-07 03:03:38 +09:00
parent 9eaaa0da07
commit 73c3cc4983
5 changed files with 77 additions and 32 deletions
+19
View File
@@ -0,0 +1,19 @@
<template>
<div class="grid">
<div v-for="[generalID, general] of list" :key="generalID" class="row">
{{ general }}
</div>
</div>
</template>
<script lang="ts" setup>
import type { GeneralListItem } from "@/defs/API/Nation";
import type { PropType } from "vue";
defineProps({
list: {
type: Object as PropType<Map<number, GeneralListItem>>,
required: true,
},
});
</script>