Invalid prop: type check failed for prop "disabled". Expected Boolean, got String with value "true". 什么意思
时间: 2023-10-27 10:42:48 浏览: 162
2020-web前端-vue项目出错-[Vue warn]: Invalid prop: custom validator check failed for prop “index”.
5星 · 资源好评率100%
这个错误意味着你在给一个组件传递 `disabled` 属性时,传递的值是一个字符串 `"true"` 而不是一个布尔值 `true`。在 Vue 或 React 等框架中,组件的属性通常需要传递一个特定的类型,如布尔值、字符串、数字等。如果传递的值类型不符合组件定义的要求,就会出现这种错误。
为了解决这个问题,你需要将传递给 `disabled` 属性的值更改为一个布尔值 `true`,而不是字符串 `"true"`。
阅读全文