vue v-for 如何控制渲染列表条数

1.slice数据源渲染前处理

v-for="(item,index) in newsList.slice(0, 6)"

2.v-if判断控制

v-for="(item,index) in newsList" v-if="index<7"