Hi There
Have a good day first.
I am working on @syncfusion/ej2-vue-schedule for ionic vue app.
I have create new blank project on ionic vue project using following link
https://ionicframework.com/docs/vue/quickstart
Now for @syncfusion/ej2-vue-schedule i have followed follwing link
https://ej2.syncfusion.com/vue/documentation/getting-started/vue3-tutorial/
Also all Prerequisites are fullfilled.
vue : 3+
node : 10.15+
vue-class-component : 8.0.0-rc.1
I have used this and convert it to simple component and import it to home.vue page.
ISSUE---
Now the issue is schedule is not loading initially, It shows toolbar only.
On initial load
When i click on any button Day,Month, etc from toolbar.
https://prnt.sc/1q9qwfw
Project is attached below.
Attachment: Ionic_vue_Project_1fa68327.zip
|
<script >
import { IonApp, IonRouterOutlet } from '@ionic/vue'; import { Day, Week, WorkWeek, Month, Agenda, DragAndDrop, Resize } from "@syncfusion/ej2-vue-schedule"; import { defineComponent } from 'vue'; export default defineComponent({ name: 'App', components: { IonApp, IonRouterOutlet }, provide: { schedule: [Day, Week, WorkWeek, Month, Agenda, DragAndDrop, Resize] } }); </script> |
Thank you. Please let me know the reason behind this.
Still there is issue. The events are not visible initially. If i Make change in code(Here i change date and it worked)
https://www.loom.com/share/128406050bb648ceb4263b6289bc721e
In Production it is working fine. So Thank you.