I am currently incorporating v-text-field to enable date inputs using the following code snippet
<v-text-field label="Date" type="date"></v-text-field>
By doing so, a text box with a calendar UI is generated (which allows users to adjust the date of the textbox)https://i.sstatic.net/mz7QJ.png
However, my predicament lies in wanting to conceal the calendar icon and have the text field itself be clickable/editable. How can I accomplish this goal?