store first makeFetch, with loading spinner

This commit is contained in:
2022-01-25 17:30:09 +01:00
parent 8fce27a128
commit e4629ed599
5 changed files with 89 additions and 9 deletions

View File

@@ -3,8 +3,18 @@
</template>
<script>
import { mapState, mapGetters } from "vuex";
export default {
name: "MyAccompanyingCourses"
name: "MyAccompanyingCourses",
computed: {
...mapState([
'accompanyingCourses',
]),
...mapGetters([
'isAccompanyingCoursesLoaded',
])
},
}
</script>