Closed bradstewart closed 8 years ago
It seems most (all?) of Vue automatically converts kebab-cased HTML attributes to camelCased JavaScript properties.
Should the router convert something like v-validate:my-property.required to $validator.myProperty for consistency? This doesn't happen currently.
v-validate:my-property.required
$validator.myProperty
Thank you for your feedback.
I'll try to support Vue-like automatically conversion.
It seems most (all?) of Vue automatically converts kebab-cased HTML attributes to camelCased JavaScript properties.
Should the router convert something like
v-validate:my-property.required
to$validator.myProperty
for consistency? This doesn't happen currently.