Blame view

src/main.js 550 Bytes
e7874705   liuqimichale   init
1
2
3
4
5
6
7
8
9
10
11
  // 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 './App'
  import router from './router'
  
  import './assets/css/reset.css'  // 引入公共样式
  
  import h5Popup from 'vue-h5-popup'; // 引入弹窗
  Vue.use(h5Popup)
  
65d81c4b   liuqimichale   停车记录接口
12
13
14
  import utils from './utils/utils'
  Vue.prototype.$utils = utils
  
e7874705   liuqimichale   init
15
16
17
18
19
20
21
22
23
  Vue.config.productionTip = false
  
  /* eslint-disable no-new */
  new Vue({
    el: '#app',
    router,
    components: { App },
    template: '<App/>'
  })