Skip to content

Commit

Permalink
fix: mark slot prop field value as any closes #3969
Browse files Browse the repository at this point in the history
  • Loading branch information
logaretm committed Oct 23, 2022
1 parent 8ccfd2b commit b55dc7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vee-validate/src/Field.ts
Expand Up @@ -274,7 +274,7 @@ export const Field = FieldImpl as typeof FieldImpl & {
validate: FieldContext['validate'];
handleChange: FieldContext['handleChange'];
$slots: {
default: (arg: FieldSlotProps<unknown>) => VNode[];
default: (arg: FieldSlotProps<any>) => VNode[];
};
};
};

0 comments on commit b55dc7f

Please sign in to comment.