32 lines
895 B
Vue
32 lines
895 B
Vue
|
<template>
|
||
|
<div class="flex flex-col h-full w-full overflow-y-auto">
|
||
|
<p>{{ memberQualifications }}</p>
|
||
|
<Spinner v-if="loading == 'loading'" class="mx-auto" />
|
||
|
<p v-else-if="loading == 'failed'">laden fehlgeschlagen</p>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { defineComponent } from "vue";
|
||
|
import { mapActions, mapState } from "pinia";
|
||
|
import Spinner from "@/components/Spinner.vue";
|
||
|
import { useMemberQualificationStore } from "@/stores/admin/memberQualification";
|
||
|
</script>
|
||
|
|
||
|
<script lang="ts">
|
||
|
export default defineComponent({
|
||
|
computed: {
|
||
|
...mapState(useMemberQualificationStore, ["memberQualifications", "loading"]),
|
||
|
},
|
||
|
mounted() {
|
||
|
this.fetchItem();
|
||
|
},
|
||
|
methods: {
|
||
|
...mapActions(useMemberQualificationStore, ["fetchMemberQualificationsForMember"]),
|
||
|
fetchItem() {
|
||
|
this.fetchMemberQualificationsForMember();
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
</script>
|