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.

17 lines
322 B

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 uView from '@/uni_modules/uview-ui'
  7. Vue.use(uView)
  8. import { goPage } from './common/js/uniExport.js'
  9. Vue.prototype.$goPage = goPage;
  10. const app = new Vue({
  11. ...App
  12. })
  13. app.$mount()