[Error]: "filterFieldProps" is not exported by "node_modules/.pnpm/[email protected][email protected][email protected][email protected][email protected]_/node_modules/vuetify/lib/components/VField/VField.mjs" #21125
-
VField does not export "filterFieldProps" anymore? The following leads to error in the title import {
VField,
filterFieldProps,
makeVFieldProps,
} from 'vuetify/lib/components/VField/VField' The error appears in vuetify v3.7.17 & v3.7.18 UPD: well I found that "filterFieldProps" was replaced by "filterProps" since 3.7.17 and I made changes in my code but still getting error |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The solution for me is usage of So instead of const fieldProps = ref(filterFieldProps(props)) now I use const fieldProps = ref(VField.filterProps(props)) |
Beta Was this translation helpful? Give feedback.
The solution for me is usage of
VField.filterProps(props)
So instead of
now I use