Vue fullcalendar,打开。事件点击模式

时间:2019-09-13 03:57:33

标签: javascript vue.js

我已经成功地使事件单击与Vue FullCalendar一起使用,但是我正在尝试使用该垫脚石,并在单击事件时使其打开模式。

我现在拥有的是给我if

我在哪里错了?

$?

1 个答案:

答案 0 :(得分:2)

这是脚本部分的简化版本:

export default {
  data() {
    return {
      showModal: false,
    };
  },
  methods: {
    eventClick() {
      this.showModal = true;
    },
  },
};

主要更改:

  • methods而非Methods
  • this.showModal而非showModal