vuex中获取的数据使用v-model绑定出问题

  get selectedProp() {
    return this.$store.state.selectedProp;
  }

获取的数据selectedProp直接绑定在表单元素上会有错,因为不能直接对vuex里面的数据进行更改

      <el-radio-group v-model="selectedProp">
            <el-radio size="small" :label="1"> el-radio>
          el-radio-group>

此时需要使用计算属性的set方法,更改selectedProp的值的时候向vuex直接提交新值:

  set selectedProp(value) {
    this.$store.commit('upSelectedChange', value);
  }

 

转载于:https://www.cnblogs.com/XHappyness/p/7495483.html

你可能感兴趣的:(javascript)