vuetify v-date-picker not start by first day of month in persian locale

Viewed 945

Consider the following code

  <v-date-picker
    v-model="picker"
    :first-day-of-week="6"
    locale="fa"
  ></v-date-picker>
  <v-date-picker
    v-model="picker"
  ></v-date-picker>

As you can see in the following picture, In Persian calendar month starts by 12th which is the first day of May

Code Output, Left side is Persian calendar

1 Answers
Related