1234567891011121314151617181920212223242526272829303132 |
- import App from './App'
- // #ifndef VUE3
- import Vue from 'vue'
- import './uni.promisify.adaptor'
- Vue.config.productionTip = false
- App.mpType = 'app'
- uni.request({
- method:'requestAuthorization',
- scope:'scope.contacts',
- success:function(res){
- console.log('请求联系人权限成功');
- },
- fail:function(err){
- console.error('请求联系人权限失败',err);
- }
- })
- const app = new Vue({
- ...App
- })
- app.$mount()
- // #endif
- // #ifdef VUE3
- import { createSSRApp } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
- // #endif
|