import App from './App' // #ifndef VUE3 import Vue from 'vue' import './uni.promisify.adaptor' import store from './store' import uView from "uview-ui"; import amap from './common/amap-wx.js'; //分享 import share from '@/common/share.js' Vue.mixin(share) Vue.use(uView); Vue.prototype.$store = store Vue.prototype.$islogin = function() { if (!uni.getStorageSync("token")) { uni.showToast({ icon: "none", title: "请登录" }) setTimeout(() => { uni.navigateTo({ url: "/pages/mine/login" }) }, 800) return true } else { return false } } Vue.prototype.$amapPlugin = new amap.AMapWX({ key: '537ed0efe961d9a3b90d9a2d2f775e1f' }); Vue.prototype.$color = ['#B620E0', '#FF6430', '#00B578', '#1677FF'] Vue.config.productionTip = false App.mpType = 'app' const app = new Vue({ store, ...App }) import WebIM from "./common/wss.js" Vue.use(WebIM, app) // http拦截器,此为需要加入的内容,如果不是写在common目录,请自行修改引入路径 import httpInterceptor from '@/common/http.interceptor.js' // 这里需要写在最后,是为了等Vue创建对象完成,引入"app"对象(也即页面的"this"实例) Vue.use(httpInterceptor, app) app.$mount() // #endif // #ifdef VUE3 import { createSSRApp } from 'vue' export function createApp() { const app = createSSRApp(App) return { app } } // #endif