Open issour opened 6 years ago
Hi dear I have resolve this error ! can you tell me why I can't change years and month with the dropdown : see the picture
thx
@issour
For your first comment,
you got this error because of the URL that you have given with axios.get() in mount() method of Tool.vue is not match with the route that you defined in the nova-components/Agenda/routes/api.php
for example: I set the route like: Route::get('/calender', function (Request $request) { $events = Enquiry::all(); return response()->json($events); });
so in the Tool.vue file the mount method is set like:
mounted() { console.log('mounted()') axios.get('/nova-vendor/agenda/calender').then(response => { this.events = response.data }); console.log(this.events); },
your path have prefix like "/nova-vendor/agenda", you can check the route by the "php artisan route:list" command
I have the same problema with not showing months and years.
Inspecting que problema I have the following error:
This error happened every time that I click on the list of year or month list.
I have the same problema with not showing months and years.
Inspecting que problema I have the following error:
This error happened every time that I click on the list of year or month list.
same error for me, any fix ?
i have the same problem. Anything new?
Hi, same error, someone has a solution? thanks
Also interested on this
ant-design-vue calendar runs well as a standalone component:
but got an " Uncaught Error: A DOM element reference is required" in Nova:
Any help is appreciated.
There is an alternative implementation using @fullcalendar/vue instead of Ant Design of Vue:
Hi Dear, I got this error :
TypeError: this.events.forEach is not a function
Can you help me with that Many thx