add more adventurers

This commit is contained in:
2023-03-19 23:48:46 +01:00
parent e1159914c6
commit e85b28866a
9 changed files with 126 additions and 4 deletions
+2 -1
View File
@@ -280,13 +280,14 @@ import {defineComponent, type PropType} from "vue";
import AdventurerComponent from "@/components/AdventurerMiniComponent.vue";
import type {Adventurer} from "@/classes/Adventurer";
import type {Quest} from "@/classes/Quest";
import type {Guild} from "@/classes/Guild";
export default defineComponent({
name: "GuildView",
components: {AdventurerComponent},
props: {
guild: {
type: Object,
type: Object as PropType<Guild>,
},
adventurers: {
type: Object as PropType<{ [key: string]: Adventurer }>,