问题:

 大致意思是prop期待传入布尔值,而你传入的却是字符串,类型错误。

[Vue warn]: Invalid prop: type check failed for prop "disabled". Expected Boolean, got String.

 

解决思路:

1、首先针对该错误信息可以去GbComponentUploadDialog.vue文件中查找disabled关键字

2、然后通过查看对应的Element官网得知,设置输入框组件禁止输入的正确写法是 :disabled="true" ,而代码中少写了冒号,加上即可。

 

[Vue warn]: Invalid prop: type check failed for prop "disabled". Expected Boolean, got String.

 

相关文章:

  • 2022-12-23
  • 2021-10-24
  • 2021-12-04
  • 2022-12-23
  • 2021-12-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-12
  • 2021-08-29
  • 2022-12-23
  • 2021-08-01
  • 2022-12-23
  • 2021-10-12
相关资源
相似解决方案