Wanderxx / vue-fullcalendar

vue calendar fullCalendar. no jquery required. Schedule events management
https://wanderxx.github.io/vue-fullcalendar/
1.51k stars 387 forks source link

Troubles when running app using vue-fullcalendar #113

Open maximedn opened 6 years ago

maximedn commented 6 years ago

Hello,

I'm quite new at using Vue and so on, but I saw this full-calendar and it's exactly what I need (I guess, as I need a calendar... :D).

But I have some troubles using it in my app. I am using yarn / npm to handle the packages, and (I think) I installed it properly:

yarn add vue-fullcalendar@latest --save

Which added everything I need, and I could add a item to my code so it's ok.

When I try running the app, I have the following error:

error  in ./node_modules/vue-fullcalendar/src/components/header.vue?vue&type=style&index=0&lang=scss&

Module parse failed: Unexpected token (58:0)
You may need an appropriate loader to handle this file type.
| 
| 
| .full-calendar-header{
|   display: flex;
|   align-items: center;

 @ ./node_modules/vue-fullcalendar/src/components/header.vue 4:0-67
 @ ./node_modules/vue-fullcalendar/src/fullCalendar.vue?vue&type=script&lang=js&
 @ ./node_modules/vue-fullcalendar/src/fullCalendar.vue

Do you know what's the issue ? I guess it's a problem with webpack or the vue-loader, but all my other views are defined the same way as the file in trouble and I have no problem...

TY !