2
0
mirror of https://github.com/tenrok/vue-ganttastic.git synced 2026-06-19 01:00:33 +03:00
Files
vue-ganttastic/src/main.js
T
2021-10-19 14:39:10 +03:00

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')