first commit
This commit is contained in:
29
衣莎项目/源码/gc_nwjs/src/main.js
Normal file
29
衣莎项目/源码/gc_nwjs/src/main.js
Normal file
@@ -0,0 +1,29 @@
|
||||
import Vue from 'vue'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import store from './store/index'
|
||||
import ElementUI from 'element-ui';
|
||||
// import 'element-ui/lib/theme-chalk/index.css';
|
||||
// 自定义主题引入
|
||||
import '@/static/style/theme/index.css'
|
||||
// import VueParticles from 'vue-particles';
|
||||
import http from '@/http/http';
|
||||
import nw from '@/utils/nw'
|
||||
import utils from '@/utils/utils'
|
||||
import printing from '@/utils/printing'
|
||||
|
||||
Vue.config.productionTip = false
|
||||
|
||||
Vue.use(ElementUI)
|
||||
// Vue.use(VueParticles)
|
||||
|
||||
Vue.prototype.$http = http
|
||||
Vue.prototype.$nw = nw
|
||||
Vue.prototype.$utils = utils
|
||||
Vue.prototype.$printing = printing
|
||||
|
||||
new Vue({
|
||||
router,
|
||||
store,
|
||||
render: h => h(App)
|
||||
}).$mount('#app')
|
||||
Reference in New Issue
Block a user