@@ -41,7 +41,7 @@ export default defineNuxtModule<VeeValidateNuxtOptions>({
4141 autoImports : true ,
4242 componentNames : { } ,
4343 } ,
44- setup ( options , nuxt ) {
44+ setup ( options ) {
4545 if ( options . autoImports ) {
4646 composables . forEach ( composable => {
4747 addImports ( {
@@ -70,14 +70,14 @@ export default defineNuxtModule<VeeValidateNuxtOptions>({
7070function checkForZod ( options : VeeValidateNuxtOptions ) {
7171 if ( isPackageExists ( 'zod' ) && ! isPackageExists ( '@vee-validate/zod' ) ) {
7272 logger . warn (
73- 'You seem to be using zod, but you have not installed @vee-validate/zod. Please install it to use zod with vee-validate.'
73+ 'You seem to be using zod, but you have not installed @vee-validate/zod. Please install it to use zod with vee-validate.' ,
7474 ) ;
7575 return true ;
7676 }
7777
7878 if ( isPackageExists ( '@vee-validate/zod' ) && ! isPackageExists ( 'zod' ) ) {
7979 logger . warn (
80- 'You seem to be using @vee-validate/zod, but you have not installed zod. Please install it to use zod with vee-validate.'
80+ 'You seem to be using @vee-validate/zod, but you have not installed zod. Please install it to use zod with vee-validate.' ,
8181 ) ;
8282 return true ;
8383 }
@@ -101,14 +101,14 @@ function checkForZod(options: VeeValidateNuxtOptions) {
101101function checkForYup ( options : VeeValidateNuxtOptions ) {
102102 if ( isPackageExists ( 'yup' ) && ! isPackageExists ( '@vee-validate/yup' ) ) {
103103 logger . warn (
104- 'You seem to be using yup, but you have not installed @vee-validate/yup. Please install it to use yup with vee-validate.'
104+ 'You seem to be using yup, but you have not installed @vee-validate/yup. Please install it to use yup with vee-validate.' ,
105105 ) ;
106106 return true ;
107107 }
108108
109109 if ( isPackageExists ( '@vee-validate/yup' ) && ! isPackageExists ( 'yup' ) ) {
110110 logger . warn (
111- 'You seem to be using @vee-validate/yup, but you have not installed yup. Please install it to use yup with vee-validate.'
111+ 'You seem to be using @vee-validate/yup, but you have not installed yup. Please install it to use yup with vee-validate.' ,
112112 ) ;
113113 return true ;
114114 }
0 commit comments