-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
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
How to v-bind? #93
Comments
Hi, You would need to pass {
"component": "md-chips",
"fieldOptions:" {
"props": {
"md-format": (string) => String(string).toUpperCase(),
}
}
} There's unfortunately no way to use any of Vue's built in directives here, all transformations must be done with javascript functions. You can refer to Vue's documentation for more info about this limitation |
Thank you for your quick response. |
@jarvelov can you please help? |
For example, how to achieve the
:md-format="toUppercase"
Functionality described in https://vuematerial.io/components/chips?
The text was updated successfully, but these errors were encountered: