"export 'VuelidatePlugin' was not found in '@vuelidate/core'
See original GitHub issueHi, I’ve installed the last version for vue-cli for vuejs 3 by npm install @vuelidate/core @vuelidate/validators.
I initialize the plugin by
`import { createApp } from ‘vue’ import App from ‘./App.vue’
import {VuelidatePlugin} from ‘@vuelidate/core’;
createApp(App).use(VuelidatePlugin).mount(‘#app’)`
When I build the app, I get this warning:
"export ‘VuelidatePlugin’ was not found in ‘@vuelidate/core’
I opened the plugin’s files and I do not found the VuelidatePlugin function.
Regards
Issue Analytics
- State:
- Created 3 years ago
- Comments:13 (7 by maintainers)
Top Results From Across the Web
vue-demi doesn't include Plugin export #767 - GitHub
The issue is that I am using Vue 2 instead of Vue 3. The type Plugin is not defined in Vue 2. Plugins...
Read more >Vuelidate TypeError when using with Vue 3 - Stack Overflow
1 Answer 1 ; import · from 'vue' ; import App from ; './App.vue' import · VuelidatePlugin ; from '@vuelidate/core' const ; createApp...
Read more >Migration Guide from v0.x - Vuelidate
Package name and imports The core library and validators have been split into separate packages: @vuelidate/core and @vuelidate/validators for easier ...
Read more >@clearlyhope/vuelidate-core - npm
Simple, lightweight model-based validation for Vue.js. Latest version: 2.0.0-alpha.11, last published: 2 years ago.
Read more >Vuelidate Plugin - FormVueLate
Vuelidate is still in testing in pre-release state. In order to seamlessly validate FormVueLatte by using Vuelidate , we provide a VuelidatePlugin that...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
There is no plugin anymore. Please read the updated docs. Thank you.
Call useVuelidate in your component setup.
Thank you.
Regards