本文介绍了使用 vee-validate 在 vue js 中验证有错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在 vuejs 中验证我正在使用 vee-validate

I want give the validation in vuejs for that i am using vee-validate

  • 我的 vue js 版本是 2.6.10
  • 并安装 run -npm install vee-validate

我在 main.ts 中声明:

import  VeeValidate  from "vee-validate";
Vue.use(VeeValidate);

但有错误:

在'vee-validate'中找不到导出'default'(导入为'VeeValidate')

还有控制台:

无法读取未定义的属性安装"在 Function.Vue.use

推荐答案

这似乎发生在 3.0 之后的任何版本中.我安装了 [email protected] 并且成功了.

this seems to happen in any version after 3.0. I installed [email protected] and it worked.

这篇关于使用 vee-validate 在 vue js 中验证有错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 12:54