Property ‘validate’ does not exist on type ‘Element | Element[] | Vue | Vue[]’

最近项目在使用 typescript+vue-cli 3.0+Element-ui 时候,调用 form 表单校验时候出现的问题做一个踩坑记录,为后续的小伙伴提供参考。

报错如下:

Property 'validate' does not exist on type 'Element | Element[] | Vue | Vue[]'.
Property 'validate' does not exist on type 'Element'.

我的解决方案:

(this.$refs.form as any).validate((valid: boolean) = >{
  if (valid) {} else {}
});

Property 'validate' does not exist on type 'Element | Element[] | Vue | Vue[]'

之前我也写过一篇关于 TypeScript+vue-cli 3.0+Element-ui 做项目时重置 form 表单时出现问题的解决方案,推荐阅读《ElementUI 遇到 TS 的问题 Property ‘resetFields’ does not exist on type ‘Vue’

「点点赞赏,手留余香」

0

给作者打赏,鼓励TA抓紧创作!

微信微信 支付宝支付宝

还没有人赞赏,快来当第一个赞赏的人吧!

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
码云笔记 » Property ‘validate’ does not exist on type ‘Element | Element[] | Vue | Vue[]’

发表回复