1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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 url from "./common/url.js"
- import share from './utils/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: "请登录"
- })
- return true
- } else {
- return false
- }
- }
- Vue.prototype.$amapPlugin = new amap.AMapWX({
- key: '537ed0efe961d9a3b90d9a2d2f775e1f'
- });
- Vue.prototype.$url = url
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- store,
- ...App
- })
- // #ifdef MP-WEIXIN
- import WebIM from "./common/wss.js"
- Vue.use(WebIM, app)
- // #endif
- // 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
|