45 lines
926 B
JavaScript
Executable File
45 lines
926 B
JavaScript
Executable File
import Vue from 'vue'
|
|
import uView from '@/uni_modules/uview-ui'
|
|
import App from './App'
|
|
import store from './store'
|
|
import bootstrap from './core/bootstrap'
|
|
import mixin from './core/mixins/app'
|
|
import './js_sdk/ican-H5Api/ican-H5Api'
|
|
import {
|
|
navTo,
|
|
showToast,
|
|
showSuccess,
|
|
showError,
|
|
getShareUrlParams,
|
|
routePush
|
|
} from './core/app'
|
|
let mpShare = require('@/uni_modules/uview-ui/libs/mixin/mpShare.js');
|
|
Vue.mixin(mpShare)
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
App.mpType = 'app'
|
|
|
|
// 载入uView库
|
|
Vue.use(uView)
|
|
|
|
// 全局mixin
|
|
Vue.mixin(mixin)
|
|
|
|
// 挂载全局函数
|
|
Vue.prototype.$toast = showToast
|
|
Vue.prototype.$success = showSuccess
|
|
Vue.prototype.$error = showError
|
|
Vue.prototype.$navTo = navTo
|
|
Vue.prototype.$store = store
|
|
Vue.prototype.$push = routePush
|
|
Vue.prototype.$getShareUrlParams = getShareUrlParams
|
|
|
|
// 实例化应用
|
|
const app = new Vue({
|
|
...App,
|
|
store,
|
|
created: bootstrap
|
|
})
|
|
app.$mount()
|