computed计算属性传参
在computed中定义
computed:{
textTotal(){
return function(value,percentage){
return value+'('+percentage+'%)'
}
},
},
然后使用
{{textTotal(text1,text2)}}
在computed中定义
computed:{
textTotal(){
return function(value,percentage){
return value+'('+percentage+'%)'
}
},
},
然后使用
{{textTotal(text1,text2)}}