The dates on the shown image are starting on the 1st of June, 2022 which is supposed to be a Wednesday but on the calendar, it is on Sunday. All months start on a Sunday not only June. I am only using <v-calendar />
with no extra props or configurations. I am using v2.4.1 of the v-calendar package.
This is how I am importing the package. Also, I am using Nuxt.js. Our other product uses Vue where the calendar is correct.
/plugins/v-calendar.js
import Vue from "vue";
import VCalendar from "v-calendar";
Vue.use(VCalendar, {
componentPrefix: "v",
});
nuxt.config.js
plugins: [
{ src: "@/plugins/v-calendar.js", ssr: false },
],
page.vue
<v-calendar />