在 vuetify 日历上不工作 prev()

问题描述

我在我的 vue.js 项目中生成了 vuetify 日历。 你可以在我的代码下面看到

<v-row>
    <v-btn icon  class="ma-2" @click="$refs.calendar.prev()">
       prevIoUs
    </v-btn>
</v-row>
 <v-calendar refs="calendar" :Now="today" 
            :value="today"
            color="primary"></v-calendar>

但是当我单击上一个按钮时,无法更改日历上当前显示的月份。 如何更改日历中的当前显示月份?

解决方法

尝试用:value="today"替换v-model="today"