vue3中v-for报错'item'is of type'unknown'的解决方法
作者:@小花76
在写vue3+ts的项目,得到一个数组,需要循环展示,使用v-for循环,写完之后发现有个报错,接下来通过本文给大家介绍vue3中v-for报错 ‘item‘ is of type ‘unknown‘的解决方法,感兴趣的朋友一起看看吧
报错
在写vue3+ts的项目,得到一个数组,需要循环展示,使用v-for循环,写完之后发现有个报错,如下:
解决
props的时候使用PropType将数据类型完整标注即可
以为没有显示的表示出list中item的类型,可以使用一下方式
interface relationData{ key:number, spuName:string, } const props = defineProps({ historyList: { type: Array<TaskrelationData>, // 或者Task[] required: true } })
我是直接在props接收的时候改的(如有错误请指正)
relationData: { type: Array as any, required: true }
到此这篇关于vue3中v-for报错 ‘item‘ is of type ‘unknown‘的解决方法的文章就介绍到这了,更多相关vue3 v-for报错内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!