Vue warn]: Error compiling template: Invalid v-for expression: (product,index)in productList1
时间: 2023-05-16 16:07:31 浏览: 302
vue 取出v-for循环中的index值实例
这个错误提示是因为 v-for 指令的表达式不正确,应该是 (product, index) in productList,而不是 (product, index) in productList1。请检查你的代码并修正这个错误。
阅读全文