关于v4.0.1中的自定义视图的自定义

时间:2019-03-27 12:59:26

标签: fullcalendar fullcalendar-4

升级到4.0.1的问题。

文档说: “要注册自定义视图,请使用createPlugin而不是defineView”

但似乎此信息也已过期:

问题: 那么,v.4.0.1中的确切代码行是什么来代替我的旧代码行: “ defineView”代码?

我尝试按照以下步骤进行操作: https://fullcalendar.io/docs/upgrading-from-v3

我的旧代码:

import { defineView } from "fullcalendar";
defineView("reosurces", {
   "class": OwnView,
   defaults: {
     duration: "00:15:00",
   }
});

例如:


import { createPlugin } from '@fullcalendar/core';
export default createPlugin({
  views: {
    specialView: {
      type: 'theViewType',
      slotLabalInterval: '06:00' // top-level property!
    },
    customView: CustomViewClass // can pass-in the class directly!
  }
})

0 个答案:

没有答案