This repository has been archived by the owner on Feb 16, 2021. It is now read-only.
Releases: CroudTech/vue-fullcalendar
Releases · CroudTech/vue-fullcalendar
Unlocked the version of Fullcalendar
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
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
Fixes #32
Fire methods to fullcalendar
Fire any method into fullcalendar using this syntax
this.$refs.calendar.fireMethod('changeView', 'agendaDay')
Remove automatic css import
Fullcalendar CSS will need to be added manually to your project.
<style>
@import '~fullcalendar/dist/fullcalendar.css';
</style>