Vue -computed傳參數

vue 中computed想傳遞參數怎麼辦?

閉包在這裏起到的重要的做用

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

computed:{
    newItem:function(){
        return function(key,val){
            return key + " " + val
        }
    }
}
相關文章
相關標籤/搜索