vue 计算属性computed方法内传参

遇到头疼的vue计算属性传参问题
经过各种资料查找,亲测有效

  1. index.vue

  1. computed中text方法传递index,利用了闭包传值
computed: {
          text() {
              return function (index) {
                  return this.Ratedata[index].currentRate.toFixed(0) + '%';
              }
          }
        },

你可能感兴趣的:(vue,前端)