Skip to content
Advertisement

How to sort Vuetify date range picker?

I have a vuetify date range picker as shown:

JavaScript

Then use the following computed property to return the values to the text field however I cannot get the dates to be in order. You can only choose two dates and if you choose the newer date first it fills in the text field with that value first even if I use the sort function on the v-model for the date picker. Any help would be appreciated.

JavaScript

Advertisement

Answer

Since the elements of the dates array are strings in the ISO 8601 format (YYYY-mm-dd or YYYY-mm), in which date and time values are in order from most significant to least significant, you can simply sort the array:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement