<script>
import Vue from 'vue';
import { Component } from "vue-property-decorator";
import { SchedulePlugin,Day, Week, WorkWeek, Month, Agenda } from '@syncfusion/ej2-vue-schedule';
Vue.use(SchedulePlugin);
export default {
provide: {
schedule: [Day, Week, WorkWeek, Month, Agenda]
}
}
</script> |
Hi Victor,Syncfusion greetings.In your sample kindly use the below code example in comSchedulerDemo.vue file to overcome the issue.
import Vue from 'vue';import { Component } from "vue-property-decorator";import { SchedulePlugin,Day, Week, WorkWeek, Month, Agenda } from '@syncfusion/ej2-vue-schedule';Vue.use(SchedulePlugin);export default {provide: {schedule: [Day, Week, WorkWeek, Month, Agenda]}}Regards,Karthi