[Vuejs]-Importing `@vuelidate/core` types not recognized by ESLint

0👍

I had to import from @vuelidate/core/index:

import { Validation } from '@vuelidate/core/index'

This is recognized by both TypeScript and ESLint.

Leave a comment