2
0
mirror of https://github.com/tenrok/vue-ganttastic.git synced 2026-06-20 00:50:33 +03:00
Files
vue-ganttastic/src/main.js
T

13 lines
276 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')