GitHub - boussadjra/vue-spring-calendar: Full Calendar based on Vue.js (original) (raw)
It's a Vue based component which provides the functionality of a full-calendar that shows daily events.
import Vue from 'vue'
import App from './App.vue'
//import the new composition api in order to make it work in Vue@2.x
import VueComp from '@vue/composition-api'
Vue.config.productionTip = false
//use the vue-composition-api plugin
Vue.use(VueComp)
new Vue({
render: h => h(App),
}).$mount('#app')