Vuex state数据的双向绑定

// 在从组件的computed中
computed: {
    user: {
        get() {
          return this.$store.state.user
        },
        set(v) {
          // 使用vuex中的mutations中定义好的方法来改变
          this.$store.commit('USER', v)
        }
    }
}
// 在组件中就可以使用

  

转载于:https://www.cnblogs.com/yihuite-zch/p/10649298.html

你可能感兴趣的:(Vuex state数据的双向绑定)