0👍
this is unnecessary:
getGamesAll(){
return this.$store.getters.getGamesAll.games
}
because you already have it using mapGetters
:
...mapGetters(["getGamesAll", "getUserLogged"]),
if your getter getGamesAll
have data then this should simply work:
<tr v-for="(general, index) in getGamesAll.games" v-bind:key="index">
- [Vuejs]-How pass object, contains computed property, to child?
- [Vuejs]-How to install vue.js inside a repository?
Source:stackexchange.com