[Vue warn]: Invalid prop: custom validator check failed for prop "type".错误

遇到错误如下,

[Vue warn]: Invalid prop: custom validator check failed for prop "type".


found in

---> 

错误提示:在model之下的button里有错误,type类型无法准确插入。
最后排查出来的结果是, 有一个button的type多打了一个空格!!!

 <Button type="primary ">确认Button> 

改成下面的就可以了

<Button type="primary">确认Button>

你可能感兴趣的:(vue)