filebrowser/assets/src/main.js

18 lines
290 B
JavaScript
Raw Normal View History

2017-06-28 10:45:41 +00:00
import Vue from 'vue'
import App from './App'
2017-07-06 08:08:20 +00:00
import store from './store'
2017-07-03 09:40:24 +00:00
import router from './router'
import i18n from './i18n'
2017-06-28 10:45:41 +00:00
Vue.config.productionTip = true
2017-06-28 15:05:30 +00:00
2017-06-28 10:45:41 +00:00
/* eslint-disable no-new */
new Vue({
el: '#app',
2017-06-30 09:25:35 +00:00
store,
2017-07-03 09:40:24 +00:00
router,
i18n,
2017-06-28 10:45:41 +00:00
template: '<App/>',
components: { App }
})