So I've been trying to use vuetify's color picker with hexa mode like this:
<v-color-picker
v-model="color"
mode="hexa"
hide-mode-switch
class="mb-4"
/>
And I can't figure out how to disable the opacity slider, I want to be able to keep the color slider without the opacity one. So at the input the user sees the color like #FF0000 (7 digits) and not #FF0000FF (9 digits).
The hide-sliders prop hide them both (color and opacity) and there is not a specific one to the opacity slider.