将v-for 写在 template上,key和 v-if 写在循环遍历的元素上 (template上不能使用key, 但 v-for 必须要指定key,所以循环遍历的元素上,需要加上key ) <templatev-for="(item,index) in ['国庆节', '春节', '元旦']"> <liv-if="item !== '春节'":key="index">{{item}} </template> 1. ...