computed计算属性传参

在computed中定义

computed:{
  textTotal(){ 
    
return function(value,percentage){
          
return value+'('+percentage+'%)'
        }
  },
},

然后使用

{{textTotal(text1,text2)}}

 

posted @ 2021-11-02 11:40  保洁叔叔  阅读(87)  评论(0)    收藏  举报