0👍
export default {
computed: {
routes() {
return this.$store.state.menu;//returning as array
}
}
};
or
export default {
computed: {
routes() {
return { 'menu':this.$store.state.menu};//returning as object
}
}
};
- [Vuejs]-Is there a way to "GET" a csv like information in a website using only Vue.js?
- [Vuejs]-Nuxt cannot change data variable
Source:stackexchange.com