Skip to content

Commit b03d3ac

Browse files
committed
fix 'isLoading' getter by moving it to mapGetters
1 parent 06abe82 commit b03d3ac

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/App.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ export default {
5050
this.$store.dispatch('vocabulaire/fetchAll');
5151
},
5252
computed: {
53-
...mapGetters('vocabulaire', ['entriesVisible']),
54-
...mapState('vocabulaire', ['isLoading'])
53+
...mapGetters('vocabulaire', ['entriesVisible', 'isLoading'])
5554
}
5655
};
5756
</script>

0 commit comments

Comments
 (0)