Vue -computed传参数

vue 中computed想传递参数怎么办?

闭包在这里起到的重要的作用


<input v-model="newItem(key,val)" type="text"/>

computed:{
    newItem:function(){
        return function(key,val){
            return key + " " + val
        }
    }
}

原文地址:https://segmentfault.com/a/1190000016962393

posted @ 2018-12-15 20:56  sfornt  阅读(1852)  评论(0编辑  收藏  举报