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

36次阅读

共计 156 个字符,预计需要花费 1 分钟才能阅读完成。

<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
    }
  },
}

正文完
 0