小技巧总结()一):
v-show=”needShow(,)”
methods:{
needShow(type,text){
if (this.onlyContent && !text) {
return false;
}
if (this.selectType === ALL ) {
return true;
}else{
return type===this.selectType;
}
}
},