WARN in ./.nuxt/vee-validate.js "export 'default' (imported as 'VeeValidate') was not found in 'vee-validate'
See original GitHub issueCannot get it to work.
WARN in ./.nuxt/vee-validate.js
"export 'default' (imported as 'VeeValidate') was not found in 'vee-validate'
modules: [ // Doc: https://axios.nuxtjs.org/usage ‘@nuxtjs/axios’, “@nuxtjs/dotenv”, ‘@nuxtjs/proxy’, ‘@nuxtjs/auth’, ‘nuxt-i18n’, ‘nuxt-validate’ ],
Issue Analytics
- State:
- Created 4 years ago
- Reactions:12
- Comments:6
Top Results From Across the Web
export 'default' (imported as 'VeeValidate') was not found in ...
js ) you can see what gets exported. I'm using v3.3.0 and it says the following: exports.ValidationObserver = ValidationObserver; exports.
Read more >Validation in vue js using vee-validate having error
import * as VeeValidate from 'vee-validate';. that resolve the problem ... I installed vee-validate@2.2.15 and it worked.
Read more >Available Rules - VeeValidate
Importing Rules in Nuxt.js. By default Nuxt ignores transpilation of the node_modules folder, and since the rules.js is an ES6 export. You should ......
Read more >Validation Observer - VeeValidate
Like providers, observers render a span by default. You can customize the rendered tag using the tag prop, for example a form tag...
Read more >Validation Provider - VeeValidate
Using the ValidationProvider offers isolated scope for each field validation state, and does not inject/mutate anything outside its slot. You can import it ......
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 FreeTop 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
Top GitHub Comments
This happened with me when I installed vee-validate before nuxt-validate. I removed vee-validate with
npm uninstall vee-validate
and installed nuxt-validate again.@Gabrielr2508 thanks, worked for me!