You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
502 B
26 lines
502 B
import App from './App'
|
|
import Vue from 'vue'
|
|
import store from './store';
|
|
|
|
import config from "./utils/config.js"
|
|
import {storage, goPage} from "./utils/utils.js"
|
|
Vue.prototype.$config = config;
|
|
Vue.prototype.$goPage = goPage;
|
|
|
|
// import './uni.promisify.adaptor'
|
|
Vue.config.productionTip = false
|
|
App.mpType = 'app'
|
|
|
|
import uView from 'uview-ui';
|
|
Vue.use(uView);
|
|
|
|
const app = new Vue({
|
|
...App,
|
|
store
|
|
})
|
|
app.$mount()
|
|
|
|
import utils from "@/common/js/utils.js"
|
|
// 自定义工具
|
|
|
|
Vue.use(utils,app)
|