24 lines
464 B
JavaScript
24 lines
464 B
JavaScript
import Vue from 'vue'
|
|
import App from './App'
|
|
import './framework/bootstrap'
|
|
import Api from "./common/js/api.js"
|
|
import store from './store'
|
|
import uView from '@/uni_modules/uview-ui'
|
|
Vue.use(uView)
|
|
Vue.config.productionTip = false
|
|
Vue.prototype.$store = store
|
|
Vue.prototype.$bus = new Vue()
|
|
App.mpType = 'app'
|
|
Vue.prototype.navfatherMethod = function() {
|
|
uni.navigateBack();
|
|
}
|
|
Vue.prototype.api=Api;
|
|
const app = new Vue({
|
|
store,
|
|
...App,
|
|
})
|
|
|
|
app.$mount()
|
|
|
|
|