Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Releases: CroudTech/vue-fullcalendar

Unlocked the version of Fullcalendar

28 Nov 10:45
Compare
Choose a tag to compare

Before this version we had locked the minor version of Fullcalendar to 3.4., this has been reverted back to the major version lock 3..*

Move from require to import

13 Sep 07:42
Compare
Choose a tag to compare

Due to the changes in the latest version of vue-loader, we have moved from require to import statements

Loading this plugin in your app should now look something like this...

import FullCalendar from 'vue-full-calendar'
Vue.use(FullCalendar)

PR #45

08 Aug 08:04
Compare
Choose a tag to compare

This release includes changes made in PR #45

Fixes #32

06 Jul 07:59
Compare
Choose a tag to compare

Fixes #32

Fire methods to fullcalendar

04 Jul 18:56
Compare
Choose a tag to compare

Fire any method into fullcalendar using this syntax

this.$refs.calendar.fireMethod('changeView', 'agendaDay')

Remove automatic css import

02 Jun 11:39
Compare
Choose a tag to compare

Fullcalendar CSS will need to be added manually to your project.

<style>
    @import '~fullcalendar/dist/fullcalendar.css';
</style>