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