1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import App from './App'
| import Vue from 'vue'
| import './uni.promisify.adaptor'
| import store from './store/index.js'
| import uView from "uview-ui";
| Vue.use(uView);
|
| Vue.config.productionTip = false
| App.mpType = 'app'
| Vue.prototype.$store = store;
|
| store.dispatch('getHeight') // 获取系统状态栏高度/手机型号
|
| const app = new Vue({
| ...App
| })
|
| app.$mount()
|
|