vue中的computed计算属性传参

//使用方法
 const aaa=computed(()=>('参数')=>{
      //需要处理的逻辑
    reteun 数据
})