下一个,上一个和今天按钮不显示

时间:2019-07-03 15:40:51

标签: javascript angularjs fullcalendar fullcalendar-4

我正在使用全日历,并且顶部的按钮没有显示。每周,每日和每月查看按钮也不会显示。 我已经安装了插件,它们正确显示在节点模块中。

图片示例全日历:- Image example Fullcalendar

在.ts

文件中
import dayGridPlugin from '@fullcalendar/daygrid';
import timeGridPlugin from '@fullcalendar/timegrid';
import interactionPlugin from '@fullcalendar/interaction';

this.options = {
  plugins: [dayGridPlugin, timeGridPlugin, interactionPlugin],
  defaultDate: new Date(),
  header: {
    left: 'prev,next',
    center: 'title',
    right: 'month'
  },
  eventClick: (e) => {
    this.showDetail = true;
    this.activity = e.event._def.extendedProps.schedule;
  },
  dateClick: (e) => {
    this.modalAct.showActivity(null, e.dateStr);
    console.log(e.dateStr);
  }
};

0 个答案:

没有答案
相关问题