Feature request: Right-justify the content and label of a <v-text-field>
See original GitHub issueMost financial software have a need for numeric/currency text fields. Those text fields are by convention right-justified. Today that seems impossible to fix easily with Vuetify without resorting to overriding the style
Example:
<v-text-field v-model="withdrawal" label="Withdrawal" justify-right />
Issue Analytics
- State:
- Created 6 years ago
- Reactions:6
- Comments:13 (3 by maintainers)
Top Results From Across the Web
Text field component - Vuetify
Text fields components are used for collecting user provided information. # Usage. A simple text field with placeholder and/or label.
Read more >How to disable a form in vuetify? - Stack Overflow
<v-text-field v-model="firstname" :disabled="true" ... [Feature Request] disable prop for v-form that disables all child input elements.
Read more >C# "Textchanged" Event And Infinite Loop? - ADocLib
Draganddrop is one of those programming features rarely listed in the user requirements document. C# update two text boxes at the same time?...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This feature request and #4006 are not duplicates. #4006 requests having the label moved to the left, outside of the textfield.
I want the text of the underlying input field right justified, aligned to the right-side border of the input field. For esthetic purposes, the label should align to the same side. This is what it looks like now:
This is how I want it to look like:
Adding a text-align: right to the component as suggested do not solve the issue. It needs to be done on the underlying input field but I am not happy about having to override the styles of the components myself as that may lead to maintenance issues further down the road.
I checked out #3531 but could not quite determine if that would help me. I tried adding right as an attribute to my component but that did nothing. I’m on version 1.0.18
Is there any update on this issue.