mirror of
https://github.com/tenrok/vue-ganttastic.git
synced 2026-06-19 01:00:33 +03:00
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import { GGanttChart, GGanttRow } from '../lib'
|
|
|
|
Vue.component('GGanttChart', GGanttChart)
|
|
Vue.component('GGanttRow', GGanttRow)
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
render: h => h(App)
|
|
}).$mount('#app')
|