vue中computed计算属性传入参数
computed: {
// 控制显示的内容
computedTxt() {
return function(value) {
return this.methodGetByteLen(value, 20)
}
},
getdata(){
return:"1233"
}
}
computed: {
// 控制显示的内容
computedTxt() {
return function(value) {
return this.methodGetByteLen(value, 20)
}
},
getdata(){
return:"1233"
}
}