[Vuejs]-State not updating on view layer after it is updated in store mutation — Vuex

0👍

You are using the method incorrectly.

enter link description here

SET_PRACTICES(state, data){
    Vue.set(state, 'practices', data)
    console.log('practices as set in the store:' )
    console.log(state.practices)
}

Leave a comment