UNPKG

optform-gantt-chart

Version:

A Gantt chart for Optform

24 lines (18 loc) 432 B
import Gantt from './gantt.vue' import flatPickr from 'vue-flatpickr-component' // Styles import 'flatpickr/dist/flatpickr.css' const install = (Vue) => { Vue.use(require('vue-moment')) Vue.component('flatPickr', flatPickr) Vue.component('Gantt', Gantt) } // Auto-install when used globally if (typeof window !== 'undefined' && window.Vue) { install(window.Vue) } export default { install, Gantt } export { Gantt }