Currently, I am utilizing the Vue Material Chips component to gather string arrays. My goal is to limit the character length of each string within the array to 30 characters.
The component offers a md-limit
prop which restricts the number of strings in the array but does not control the character count per string.
It seems like implementing a custom validation before adding each string to the array will be necessary since using v-validate
did not yield the desired effect on the chips component.
If anyone has any suggestions on how I can accomplish this, it would be greatly appreciated! Thank you.