vuelidate module not found

2.7k Views Asked by At

Trying to use the https://vuelidate-next.netlify.app/ module for validation. Using VueJs2 Have the below code in app.js. when I do npm run watch am getting the below error "ERROR in ./modules/sell/Resources/js/app.js Module not found: Error: Can't resolve 'vuelidate' "

Tried installing the npm install @types/vuelidate found in Could not find a declaration file for module 'vuelidate' but it doesn't seem to work.

import Vue from 'vue'
import Vuelidate from 'vuelidate'
import router from './router/index.js'
import store from './store'
require('./utils/fontAwesomeIcons')

import ResellerApp from "./App.vue"
Vue.use(Vuelidate);
new Vue({
    el: '#app',
    store,
    router,
    components: {
        ResellerApp,
    },
});
1

There are 1 best solutions below

0
On

The new Vuelidate version states that you need to import the library using the following command: import { useVuelidate } from '@vuelidate/core'

Here's the link about the migration to the newer version: https://vuelidate-next.netlify.app/migration_guide.html#package-name-and-imports