main.js
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// 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 ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css';
import './styles/element-#324057/index.css';
import 'font-awesome/css/font-awesome.min.css'
import App from './App'
import router from './router'
import store from './vuex/store'
import Vuex from 'vuex'
import NProgress from 'nprogress'
import Mock from './mock'
Mock.bootstrap();
import VueQuillEditor from 'vue-quill-editor'
// require styles
import 'quill/dist/quill.core.css'
import 'quill/dist/quill.snow.css'
import 'quill/dist/quill.bubble.css'
Vue.use(VueQuillEditor, /* { default global options } */ )
Vue.config.productionTip = false
NProgress.configure({
showSpinner: false
});
Vue.use(ElementUI)
Vue.use(Vuex)
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
store,
components: {
App
},
data: {
bus: new Vue()
},
template: '<App/>'
})