共计 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
}
},
}
正文完