Invalid prop: type check failed for prop "currentPage". Expected Number with value 1, got String with value "1".
时间: 2023-09-23 10:06:17 浏览: 97
2020-web前端-vue项目出错-[Vue warn]: Invalid prop: custom validator check failed for prop “index”.
5星 · 资源好评率100%
这个错误是由于你传递了一个字符串而不是一个数字给"currentPage"属性引起的。在你的代码中,确保将数字值传递给"currentPage"属性,而不是字符串。你可以使用parseInt()函数将字符串转换为数字,例如:currentPage={parseInt("1")}。这样就能够解决这个错误。
阅读全文