vue中使用 @fullcalendar/vue 跳转到指定 月的月视图

在 Vue 中使用 @fullcalendar/vue 来跳转到指定月份的月视图,您可以通过更改 FullCalendar 组件的 props 来实现。下面是一个示例代码,展示了如何在 Vue 组件中进行设置: 首先,确保已经安装了 @fullcalendar/vue 和所需的 FullCalendar 插件(例如 @fullcalendar/daygrid):

js 复制代码
    npm install @fullcalendar/vue @fullcalendar/daygrid

接下来,在 Vue 组件中,使用 @fullcalendar/vue 来渲染 FullCalendar。在模板中可以使用 FullCalendar 组件,并将所需的 options 和 eventSource 通过 props 传递:

js 复制代码
<template>
  <div>
    <button @click="jumpToMonth">跳转到月视图</button>
    <FullCalendar :options="calendarOptions" :events="eventSource" ref="fullCalendar" />
  </div>
</template>

<script>
import FullCalendar from '@fullcalendar/vue';
import dayGridPlugin from '@fullcalendar/daygrid';

export default {
  components: {
    FullCalendar,
  },
  data() {
    return {
      calendarOptions: {
        plugins: [dayGridPlugin],
        initialView: 'dayGridMonth',
      },
      eventSource: [
        // 设置日历的事件数据
        // ...
      ],
      calendarRef: null,
    };
  },
  mounted() {
    this.calendarRef = this.$refs.fullCalendar.getApi();
  },
  methods: {
    jumpToMonth() {
      const year = 2023; // 要跳转的目标年份
      const month = 8; // 要跳转的目标月份(从0开始计数,0表示一月)

      if (this.calendarRef) {
        this.calendarRef.gotoDate(`${year}-${month.toString().padStart(2, '0')}-01`);
      }
    },
  },
};
</script>

在这个示例中,我们首先使用 import 导入 @fullcalendar/vue 组件和所需的插件(例如 dayGridPlugin)。

然后,在组件的 data 部分,我们定义了 calendarOptions 对象,用于配置 FullCalendar 的选项,例如设置插件、初始化视图等。并使用 eventSource 数组来提供日历的事件数据。

mounted 钩子函数中,我们获取了 FullCalendar 实例的引用,并将其保存在 calendarRef 变量中,以便后续调用。

jumpToMonth 方法中,我们使用 this.calendarRefgotoDate 方法,将目标年份和月份作为参数传入。请注意,在日期字符串中,月份需要进行零填充(例如 '08')以保持两位数的格式。FullCalendar 将自动跳转到指定年月的月视图。

最后,在模板中,我们使用 FullCalendar 组件,并将 optionsevents 作为 props 传递给组件。我们还添加了一个按钮,当用户点击时,会触发 jumpToMonth 方法,实现跳转到指定月份的月视图。

以上就是在 Vue 中使用 @fullcalendar/vue 实现跳转到指定月份的月视图的示例代码。根据您的需求,您可以自行调整代码,并参考 FullCalendar 的文档进行进一步的功能定制。

参考链接

  1. FullCalendar日历插件(中文API)
  2. FullCalendar中文文档
相关推荐
Linux运维技术栈14 分钟前
Cloudflare Argo Smart Routing全球加速:优化跨境回源链路,提升跨区域访问体验
大数据·前端·数据库
恋猫de小郭1 小时前
Android CLI ,谷歌为 Android 开发者专研的 AI Agent,提速三倍
android·前端·flutter
freewlt1 小时前
从 0 搭建现代前端组件库:2026年完整实战指南
前端
凌冰_1 小时前
Thymeleaf 核心语法详解
java·前端·javascript
AIBox3651 小时前
claude 镜像 api 使用指南(2026 年4 月更新)
java·服务器·前端·人工智能·gpt·前端框架
SuperEugene1 小时前
Vue3 配置文件管理:按模块拆分配置,提升配置可维护性|配置驱动开发实战篇
前端·javascript·vue.js·驱动开发
阿凤211 小时前
后端返回文件二进制流
开发语言·前端·javascript·uniapp
落魄江湖行1 小时前
进阶篇四 Nuxt4 Server Routes:写后端 API
前端·vue.js·typescript·nuxt4
萧行之1 小时前
解决Microsoft Edge/Hotmail登录报错(15/25/2603、0x80190001)
前端·microsoft·edge
Eiceblue1 小时前
C# 删除 PDF 页面:单页 / 多页批量删除技巧
前端·pdf·c#