Vue warn]: Error compiling template: Invalid v-for expression: (product,index)in productList1
时间: 2023-05-16 17:07:31 浏览: 312
利用Vue的v-for和v-bind实现列表颜色切换
这个错误提示是因为 v-for 指令的表达式不正确,应该是 (product, index) in productList,而不是 (product, index) in productList1。请检查你的代码并修正这个错误。
阅读全文