[Vuejs]-How can I pass Vuex data to app components as data?

0👍

Give this a try:

data() {
   return { testing: [] }
}
beforeMount () {
 this.testing = this.stateTesting
},
computed: {    
   stateTesting () {
      return this.your_state_here
   }
}

Leave a comment