Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix(calendar): add missing first-day-of-week property support #20096

Merged
merged 1 commit into from
Jul 9, 2024

Conversation

johnleider
Copy link
Member

Motivation and Context

Markup:

<template>
  <v-container class="pa-md-12">
    <v-number-input v-model="firstDayOfWeek" />
    <v-date-picker :first-day-of-week="firstDayOfWeek" />
    <v-calendar :first-day-of-week="firstDayOfWeek" />
  </v-container>
</template>

<script setup>
  import { ref } from 'vue'

  const firstDayOfWeek = ref(1)
</script>

@johnleider johnleider added T: bug Functionality that does not work as intended/expected C: VCalendar labels Jul 3, 2024
@johnleider johnleider added this to the v3.6.x milestone Jul 3, 2024
@johnleider johnleider self-assigned this Jul 3, 2024
@johnleider johnleider requested a review from blalan05 July 3, 2024 16:23
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
C: VCalendar T: bug Functionality that does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug Report] Missing First day of week prop in v-date-picker in Vuetify 3
2 participants