feat(wip): 세력 장수 작업 중
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user