VuetifyのCalendarsを日本語化してみる
結論
calendar.vue
<v-calendar
...
locale="ja-jp"
:day-format="timestamp => new Date(timestamp.date).getDate()"
:month-format="timestamp => (new Date(timestamp.date).getMonth() + 1) + ' /'"
...
></v-calendar>
参考
- VuetifyのDatePickerを日本語化してみる
- Calendar component
-
vuetify/timestamp.ts
(createNativeLocaleFormatter)