62 lines
1.3 KiB
JavaScript
62 lines
1.3 KiB
JavaScript
import Vue from 'vue'
|
|
|
|
import 'normalize.css/normalize.css'// A modern alternative to CSS resets
|
|
|
|
import Element from 'element-ui'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
|
|
import '@/styles/index.scss' // global css
|
|
|
|
import App from './App'
|
|
import router from './router'
|
|
import store from './store'
|
|
|
|
import i18n from './lang' // Internationalization
|
|
import './icons' // icon
|
|
import './errorLog'// error log
|
|
import './permission' // permission control
|
|
// import './mock' // simulation data
|
|
|
|
import * as filters from './filters' // global filters
|
|
// import VueAMap from 'vue-amap'
|
|
// Vue.use(VueAMap)
|
|
|
|
// VueAMap.initAMapApiLoader({
|
|
// key: '49842c6fe4d24df80871faec2e272a00',
|
|
// plugin: [
|
|
// 'AMap.Geolocation',
|
|
// 'AMap.Driving',
|
|
// 'AMap.Walking',
|
|
// 'AMap.Autocomplete',
|
|
// 'AMap.PlaceSearch',
|
|
// 'AMap.Scale',
|
|
// 'AMap.OverView',
|
|
// 'AMap.ToolBar',
|
|
// 'AMap.MapType',
|
|
// 'AMap.PolyEditor',
|
|
// 'AMap.CircleEditor'
|
|
// ],
|
|
// // 默认高德 sdk 版本为 1.4.4
|
|
// v: '1.4.4'
|
|
// })
|
|
|
|
Vue.use(Element, {
|
|
size: 'medium', // set element-ui default size
|
|
i18n: (key, value) => i18n.t(key, value)
|
|
})
|
|
|
|
// register global utility filters.
|
|
Object.keys(filters).forEach(key => {
|
|
Vue.filter(key, filters[key])
|
|
})
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
store,
|
|
i18n,
|
|
render: h => h(App)
|
|
})
|