修改 vuex $store.state 里取出的数据不响应

Posted winyh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改 vuex $store.state 里取出的数据不响应相关的知识,希望对你有一定的参考价值。

一定要先拷贝

 

let { showLabel, actualValue } = this.record;
      let show = this.rowData[showLabel];
      let actual = this.rowData[actualValue];
      const { formGroup } = this.$store.state.right;
      const { dispatch } = this.$store;
      let group = _.cloneDeep(formGroup) // 这一步必须, 如果直接 formGroup.map( ... ) 数据响应不到
      const newFormGroup = group.map(item => {
        if (item.componentx === "modal") {
          item = {
            ...item,
            uniqueKey:createUuid()
          }
          return (item = {
            ...item,
            initValue: show,
            actualValue: actual
          });
        } else {
          return item;
        }
      });
      dispatch("right/updateFormGroup", newFormGroup);
      this.visible = false;

 

以上是关于修改 vuex $store.state 里取出的数据不响应的主要内容,如果未能解决你的问题,请参考以下文章

mutation中修改state中的状态值,却报[vuex] do not mutate vuex store state outside mutation handlers.

vuex直接修改state 与 用dispatch/commit来修改state的差异

vuex的五个属性及使用方法

vue-vuex

Vuex之Mutation

vueX版本求和案例