I created a v-select component using Vuetify, and I am wondering how I can sort the names of the items from largest to smallest within this v-select?
<v-select
v-model="selectedFruits"
:items="fruits"
label="Favorite Fruits"
item-text="text"
return-object
multiple
>
fruits: [ { text: 'x', id: '1'},
{ text: 'y', id: '2'},
{ text: 'a', id: '5'},
{ text: 'h', id: '4'}],
I attempted to use the sort method, but it was unsuccessful.