无法在 Vue3 中使用 Vuelidate 验证电子邮件 [英] Can't validate email with Vuelidate in Vue3

查看:25
本文介绍了无法在 Vue3 中使用 Vuelidate 验证电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在表单中使用验证选项.该应用程序正在 Vue3 下开发.我已将 npm install @vuelidate/core @vuelidate/validator 安装到项目文件夹中.在文件 main.js 中,我一直在尝试添加 Vuelidate,如下所示:

import { createApp } from 'vue'从 'vuelidate' 导入 Vuelidate从'./App.vue'导入应用程序导入'./registerServiceWorker'从'./router'导入路由器从./store"导入商店导入'materialize-css/dist/js/materialize.min'createApp(App).use(store).use(router).use(Vuelidate).mount('#app')

接下来我正在处理 Login.vue 文件,如下所示