请教下vuejs里边的v-show怎么写且的判断条件?谢谢

请教下vuejs里边的v-show怎么写且的判断条件?谢谢

莫回无
浏览 9065回答 1
1回答

慕尼黑8549860

复杂的v-if,v-show 情况可以有几种写法直接写逻辑判断<div v-show="a && b"></div>通过 computed 计算出结果computed: {&nbsp; &nbsp;test(){&nbsp; &nbsp; &nbsp; &nbsp;return this.a && this.b&nbsp; &nbsp;}}动态判断多个项的情况(如v-for 中每一项都需要v-show判断时)<li v-for="item in list" v-if="isShow(item)"></li>methods: {&nbsp; &nbsp;isShow(item) {return item.a && item.b;&nbsp; &nbsp;}}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript