main.js 577 B

1234567891011121314151617181920212223242526272829303132
  1. import App from './App'
  2. // #ifndef VUE3
  3. import Vue from 'vue'
  4. import './uni.promisify.adaptor'
  5. Vue.config.productionTip = false
  6. App.mpType = 'app'
  7. uni.request({
  8. method:'requestAuthorization',
  9. scope:'scope.contacts',
  10. success:function(res){
  11. console.log('请求联系人权限成功');
  12. },
  13. fail:function(err){
  14. console.error('请求联系人权限失败',err);
  15. }
  16. })
  17. const app = new Vue({
  18. ...App
  19. })
  20. app.$mount()
  21. // #endif
  22. // #ifdef VUE3
  23. import { createSSRApp } from 'vue'
  24. export function createApp() {
  25. const app = createSSRApp(App)
  26. return {
  27. app
  28. }
  29. }
  30. // #endif