We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
useBem
Now we have:
const { createModifiersClasses } = useBem('va-input') const computedClasses = createModifiersClasses(() => ({ success: props.success, focused: props.focused, error: props.error, }))
we want something like this
const computedClasses = useBem('va-input', () => pick(props, ['success', 'focused', 'error']))
After update this hook can be useful in useForm hook #1851 (review)
useForm
The text was updated successfully, but these errors were encountered:
[epicmaxco#1887] useBem & useForm composables refactoring
3dd09c8
[#1887] useBem & useForm composables refactoring (#1910)
14e2d7b
aluarius
Successfully merging a pull request may close this issue.
Now we have:
we want something like this
After update this hook can be useful in
useForm
hook #1851 (review)The text was updated successfully, but these errors were encountered: