Bonjour,
Voila je rencontre un petit problème avec mon code.
Ce que je fais
Voilà j'ai une erreur avec mon code, l'erreur est Uncaught (in promise) TypeError: nots.body.forEach is not a function
Voici mon code:
export default {
mounted() {
this.get_unread()
},
methods: {
get_unread() {
this.$http.get('/get_unread')
.then( (nots) => {
nots.body.forEach((not) => {
this.$store.commit('add_not', not)
})
})
}
},
computed: {
all_nots_count() {
return this.$store.getters.all_nots_count
}
}
}
Je vous remercie.