Function Vuetify v2.3.14 v-calendar getVisibleEvents函数返回空数组

Function Vuetify v2.3.14 v-calendar getVisibleEvents函数返回空数组,function,calendar,vuetify.js,Function,Calendar,Vuetify.js,如何在vuetify中使用类型为month的日历组件获取可见事件?我使用getVisibleEvents函数,它返回一个空数组。我正在使用vuetify 2.3.14版我不知道这是否有用 <v-date-picker color="custm_theme_6" v-model="date" :max="

如何在vuetify中使用类型为month的日历组件获取可见事件?我使用getVisibleEvents函数,它返回一个空数组。我正在使用vuetify 2.3.14版

我不知道这是否有用

                <v-date-picker
                  color="custm_theme_6"
                  v-model="date"
                  :max="new Date().toISOString().slice(0, 10)"
                ></v-date-picker>

带有@change event call to eventos\u visibles

eventos_visibles({ start, end }) 
  let elementos = 0
  const start_date = `${start.date} 00:00:00`
  const end_date = `${end.date} 23:59:59`

  this.calendario.forEach((element) => {
    console.log('element: ' + JSON.stringify(element))
    ...
  })
},