File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
packages/vee-validate/src Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ interface ErrorMessageSlotProps {
66 message : string | undefined ;
77}
88
9- const ErrorMessageImpl = defineComponent ( {
9+ const ErrorMessageImpl = /** #__PURE__ */ defineComponent ( {
1010 name : 'ErrorMessage' ,
1111 props : {
1212 as : {
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ interface FieldSlotProps<TValue = unknown>
3838 handleInput : FieldContext [ 'handleChange' ] ;
3939}
4040
41- const FieldImpl = defineComponent ( {
41+ const FieldImpl = /** #__PURE__ */ defineComponent ( {
4242 name : 'Field' ,
4343 inheritAttrs : false ,
4444 props : {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { FieldArrayContext } from './types';
33import { useFieldArray } from './useFieldArray' ;
44import { normalizeChildren } from './utils' ;
55
6- const FieldArrayImpl = defineComponent ( {
6+ const FieldArrayImpl = /** #__PURE__ */ defineComponent ( {
77 name : 'FieldArray' ,
88 inheritAttrs : false ,
99 props : {
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ type FormSlotProps = UnwrapRef<
3535 getErrors < TValues extends GenericObject = GenericObject > ( ) : FormErrors < TValues > ;
3636} ;
3737
38- const FormImpl = defineComponent ( {
38+ const FormImpl = /** #__PURE__ */ defineComponent ( {
3939 name : 'Form' ,
4040 inheritAttrs : false ,
4141 props : {
You can’t perform that action at this time.
0 commit comments