Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

fix(VDatePicker): change calendar when date is changed #19570

Merged
merged 2 commits into from
Apr 22, 2024

Conversation

SonTT19
Copy link
Contributor

@SonTT19 SonTT19 commented Apr 9, 2024

Description

fixes #19421

Markup:

<template>
  <v-container>
    <v-btn @click="d = new Date(2010, 3, 3)">set new date</v-btn>
    <v-row justify="space-around">
      <v-date-picker v-model="d" elevation="1"></v-date-picker>
    </v-row>
  </v-container>
</template>
<script>
  export default {
    data() {
      return {
        d: new Date(2000, 1, 1),
      }
    },
  }
</script>

@MajesticPotatoe MajesticPotatoe added T: bug Functionality that does not work as intended/expected C: VDatePicker VDatePicker labels Apr 9, 2024
@johnleider johnleider force-pushed the fix/19421-v-datepicker-react-when-date-changed branch from c0e7031 to e8efc52 Compare April 22, 2024 18:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VDatePicker VDatePicker 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][3.5.9] VDatePicker does not react on date changes
3 participants