index.js 418 Bytes
Newer Older
潘自豪's avatar
潘自豪 committed
1 2 3 4 5
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './index.vue'
import router from './router/index_router'
张恒's avatar
张恒 committed
6
import '../databoard/assets/index.css'
潘自豪's avatar
潘自豪 committed
7 8 9 10 11 12 13 14 15 16

Vue.config.productionTip = false

/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  template: '<App/>',
  components: { App }
})