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.

25 lines
401 B

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. import App from './App'
  2. import Vue from 'vue'
  3. import './uni.promisify.adaptor'
  4. Vue.config.productionTip = false
  5. App.mpType = 'app'
  6. import store from './store';
  7. import uView from '@/uni_modules/uview-ui'
  8. Vue.use(uView)
  9. import { goPage } from './common/js/uniExport.js'
  10. Vue.prototype.$goPage = goPage;
  11. const app = new Vue({
  12. ...App,
  13. store
  14. })
  15. require('./config/request.js')(app)
  16. app.$mount()