mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
26 lines
455 B
JavaScript
26 lines
455 B
JavaScript
// IE 兼容
|
|
import '@babel/polyfill'
|
|
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import store from './store'
|
|
// 引入全局样式
|
|
// import '@/assets/css/index.scss'
|
|
|
|
// 全局引入按需引入UI库 vant
|
|
import '@/plugins/vant'
|
|
|
|
// 移动端适配
|
|
import 'lib-flexible/flexible.js'
|
|
|
|
// filters
|
|
import './filters'
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
store,
|
|
render: h => h(App)
|
|
})
|