vuex的数据快速绑定到v-model上面

<input v-model="test">
 
 
 
JS:

computed: {
  test: {
    get () {
      return this.$store.state.test
    },
    set (val) {
      this.$store.commit('setTest', val)
    }
  }
}
原文地址:https://www.cnblogs.com/cyzbeke/p/13518597.html