乐趣区

关于前端:在vue项目中使用computed计算属性并传入参数

<template>
    <div v-if=isType('0')></div>  
</template>

computed:{isType() {
    // 须要 return 一个 fn 并接管参数
    return function(type) {
      let is = true
      if(type==='1'){return false}
      return is
    }
  },
}
退出移动版