v-for和v-if 优先级的问题

2021-12-17  本文已影响0人  微笑的弧度_c50f

不能直接这样写,会出现警告。

 <div v-for="(item,index) in checkList"  :key="index"  v-if="item.status">    
</div>  

正确的写法

<template v-for="(item,index) in checkList">
    <div :key="index"  v-if="item.status" ></div>   
</template>

注意:永远不要把 v-if 和 v-for 同时用在同一个元素上,带来性能方面的浪费(每次渲染都会先循环再进行条件判断)
如果避免出现这种情况,则在外层嵌套template(页面渲染不生成dom节点),在这一层进行v-if判断,然后在内部进行v-for循环

<template v-if="isShow">
    <p v-for="item in items">
</template>

如果条件出现在循环内部,可通过计算属性computed提前过滤掉那些不需要显示的项

computed: {
    items: function() {
      return this.list.filter(function (item) {
        return item.isShow
      })
    }
}
上一篇下一篇

猜你喜欢

热点阅读