Unable to get the schedule component to work, I'm getting a RangeError: Maximum call stack size exceeded. I have followed the demo project and get started without any luck. The scheduler header appears but the loader just keeps spinning nothing else. I'm using typescript, could this be affecting the "provide" properties being picked up?
https://ej2.syncfusion.com/vue/demos/?_ga=2.222679771.199834899.1635904132-1806122478.1630930338#/material/schedule/resource.html
import { Component, Vue, Ref } from "vue-property-decorator";
import { SchedulePlugin, Day, Week, WorkWeek, Month, Agenda, DragAndDrop, Resize } from '@syncfusion/ej2-vue-schedule';
Vue.use(SchedulePlugin)
@Component({ components: { Cropper } })
export default class Create extends Vue {
provide = {
schedule: [Day, Week, WorkWeek, Month, Agenda]
}