工行这里学车报名流程h5
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

  1. import App from './App'
  2. import Vue from 'vue'
  3. import store from './store';
  4. import config from "./utils/config.js"
  5. import {storage, goPage} from "./utils/utils.js"
  6. Vue.prototype.$config = config;
  7. Vue.prototype.$goPage = goPage;
  8. // import './uni.promisify.adaptor'
  9. Vue.config.productionTip = false
  10. App.mpType = 'app'
  11. import uView from 'uview-ui';
  12. Vue.use(uView);
  13. const app = new Vue({
  14. ...App,
  15. store
  16. })
  17. app.$mount()
  18. import utils from "@/common/js/utils.js"
  19. // 自定义工具
  20. Vue.use(utils,app)