I have run into an issue while working on a Vue.js project that utilizes Vuetify. The problem lies with the default date format of the v-text-field
when its type is set to "date." Currently, the format shows as mm/dd/yyyy, but I need it to display in the yyyy/mm/dd format.
Below is the code snippet for the date field:
<v-text-field
type="date"
label="From Date"
v-model="from_date"
ref="fromDateField"
></v-text-field>