vue 计算属性computed方法内传参

computed: {
     choosevalue : function(){
         return function (index) {
             console.log(index);
             console.log(this.selected);
                console.log(this.selected.indexOf(index)!==-1);
                  return this.selected.indexOf(index)!==-1
              }
      }
    },

index 就是接受i.val的值,利用闭包进行传值

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