21 lines
334 B
JavaScript
21 lines
334 B
JavaScript
import 'amfe-flexible'
|
|
import Vue from 'vue'
|
|
import App from './App'
|
|
import router from './router'
|
|
import _ from './serve/_'
|
|
|
|
import Vant from 'vant'
|
|
import 'vant/lib/index.css'
|
|
|
|
Vue.prototype.$http = _
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.use(Vant);
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
components: { App },
|
|
template: '<App/>'
|
|
})
|