Add style and class extender to q-input
-
Hi @rstoenescu,
may you add style and class extender props so it is possible to pass own classes and styles to <input> ?
At the moment I need to convert to uppercase an input text field and in vanilla html I can do:style="text-transform:uppercase"
Actually I cannot add uppercase class to q-input
TIA -
Found how add styles via attributes prop:
:attributes="{'style': 'text-transform: uppercase;'}"
but should be usefull extend classes too.