vue 通过value 返回选中 值所在对象

this.arr.filter((c,i,a)=>{//第一个参数为当前项,第二个参数为索引,第三个为原值

     var hh = that.list.filter(function (c, i, a) {//第一个参数为当前项,第二个参数为索引,第三个为原值

        if (c.id == that.current) {
          return c
        }
      })

})

原文地址:https://www.cnblogs.com/chenlongsheng/p/13922230.html