Property ‘validate’ does not exist on type ‘Element | Element[] | Vue | Vue[]’
AI 概述
最近项目在使用 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.$r...
最近项目在使用 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[]'](https://mybj123.com/wp-content/uploads/2020/06/1591863541-8e2dcfd7e7e24b1.png)
之前我也写过一篇关于 TypeScript+vue-cli 3.0+Element-ui 做项目时重置 form 表单时出现问题的解决方案,推荐阅读《ElementUI 遇到 TS 的问题 Property ‘resetFields’ does not exist on type ‘Vue’》
以上关于Property ‘validate’ does not exist on type ‘Element | Element[] | Vue | Vue[]’的文章就介绍到这了,更多相关内容请搜索码云笔记以前的文章或继续浏览下面的相关文章,希望大家以后多多支持码云笔记。
声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 admin@mybj123.com 进行投诉反馈,一经查实,立即处理!
重要:如软件存在付费、会员、充值等,均属软件开发者或所属公司行为,与本站无关,网友需自行判断
码云笔记 » Property ‘validate’ does not exist on type ‘Element | Element[] | Vue | Vue[]’
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 admin@mybj123.com 进行投诉反馈,一经查实,立即处理!
重要:如软件存在付费、会员、充值等,均属软件开发者或所属公司行为,与本站无关,网友需自行判断
码云笔记 » Property ‘validate’ does not exist on type ‘Element | Element[] | Vue | Vue[]’

微信
支付宝