vue 计算属性computed方法内传参

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

  1. index.vue
"Ratedata[index].currentRate"
     color="#2462E8"
     fill="#fff"
     layer-color="#E6E6E6"
     :rate="Ratedata[index].rate"
     :text="text(index)"
     :speed="60"
     :clockwise="true"
     :stroke-width="40"
 />
复制代码
  1. computed中text方法传递index,利用了闭包传值
computed: {
  text() {
      return function (index) {
          return this.Ratedata[index].currentRate.toFixed(0) + '%';
      }
  }
}
复制代码

转载于:https://juejin.im/post/5bc597016fb9a05cf715c2af

你可能感兴趣的:(vue 计算属性computed方法内传参)