24 lines
631 B
JavaScript
24 lines
631 B
JavaScript
|
// 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/styles/reset.css'
|
||
|
import VueAwesomeSwiper from 'vue-awesome-swiper'
|
||
|
import 'babel-polyfill'
|
||
|
import BaiduMap from 'vue-baidu-map'
|
||
|
Vue.use(BaiduMap, {
|
||
|
ak: 'OMpRxEIx1s7uMebZM9R09V4bv5zapeIm'
|
||
|
})
|
||
|
import 'swiper/dist/css/swiper.css'
|
||
|
Vue.use(VueAwesomeSwiper)
|
||
|
Vue.config.productionTip = false
|
||
|
|
||
|
/* eslint-disable no-new */
|
||
|
new Vue({
|
||
|
el: '#app',
|
||
|
router,
|
||
|
components: { App },
|
||
|
template: '<App/>'
|
||
|
})
|