Closed ribrewguy closed 6 years ago
You are trying to use the plugin as a component. You need to either change your import statement to import the component...
import Vue from 'vue';
import { FullCalendar } from 'vue-full-calendar';
Vue.component(FullCalendar);
... or use Vue.use
to install the plugin ...
import Vue from 'vue';
import FullCalendar from 'vue-full-calendar';
Vue.use(FullCalendar);
Hope that helps?
Works great thanks! Guess I missed that detail after looking back and forth between my code and the docs 100 times...
When using this plugin with Nuxt, by default I get this error:
Setting
ssr: false
gets the app a little further, but trying to use the component fails with the same error.My plugin script (calendar.js):
Please advise.