关于 Invalid prop: type check failed for prop “index“. Expected String, got Undefined

使用ElementUI导航组件中循环生成导航过程中

关于 Invalid prop: type check failed for prop “index“. Expected String, got Undefined_第1张图片

出现如下的警告: Invalid prop: type check failed for prop “index“. Expected String, got Undefined

关于 Invalid prop: type check failed for prop “index“. Expected String, got Undefined_第2张图片

报错:index字段为字符串格式,后台数据为num格式,格式警告

解决办法:

index="item.path" =>  index="item.path + ' ' "

使用ElementUI库的index是字符串格式,但是id一般时Number类型的,所以会报错。可以利用+将其他类型的值转化成字符串类型。+' ',将后台数据转换为字符串。

关于 Invalid prop: type check failed for prop “index“. Expected String, got Undefined_第3张图片

 


 

你可能感兴趣的:(vue学习笔记,javascript,vue.js,开发语言)