Invalid prop: type check failed for prop "total". Expected Number with value 0, got String with value ""
时间: 2023-08-26 16:12:06 浏览: 179
2020-web前端-vue项目出错-[Vue warn]: Invalid prop: custom validator check failed for prop “index”.
5星 · 资源好评率100%
这个问题是在使用element-ui的分页组件时出现的。根据引用和引用的描述,错误提示是"Invalid prop: type check failed for prop 'total'. Expected Number with value 0, got String with value ''"。具体来说,期望的'总数'(total)属性的类型应该是数字类型,值为0,但实际传入的是一个空字符串。
根据引用的解决方法,将total的初始值从空字符串改为null即可解决这个问题。因此,你需要在代码中将total的初始值修改为null,如下所示:
data() {
return {
list:[],
searchData:'',
currentPage:1,
limit:5,
total:null
}
},
这样做之后,再次使用分页组件时就不会出现"Invalid prop: type check failed for prop 'total'. Expected Number with value 0, got String with value ''"的错误提示了。
阅读全文