I'm starting on Vue.js and I'm stuck on something really basic.
I did a multiple v-select (Vuetify component) which allows me to choose one or more items from a list.
<v-select
dark
class="mb-5"
v-model="select_typeContrats"
:items="contrats"
label="Contracts"
multiple
chips
hint="Select in order of preference"
persistent-hint
></v-select>
Trouble! I would like that when we click on an item in the list, there is a number that appears next to it to show the user that he must choose well in order to prioritize proposals. Instead of just validating the box
So my question is how to do it? is it possible to do this with the v-select component? Thanks for your future feedback! : D