加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 788 Bytes
一键复制 编辑 原始数据 按行查看 历史
GyxChen 提交于 2023-01-13 20:03 . first commit
// #ifndef VUE3
import Vue from 'vue'
import App from './App'
import {$http} from "@escook/request-miniprogram"
import globalConfigs from "./utils/globalConfigs.js"
import store from "@/store"
Vue.config.productionTip = false
App.mpType = 'app'
uni.$http = $http
//配置全局url
$http.baseUrl = globalConfigs.requestAddress
//请求拦截器
$http.beforeRequest = function(option){
uni.showLoading({
title:"加载中。。。"
})
}
// 响应拦截器
$http.afterRequest = function(option){
uni.hideLoading()
}
const app = new Vue({
...App,
store
})
app.$mount()
// #endif
//VUE#的编译模式
// #ifdef VUE3
import { createSSRApp } from 'vue'
import App from './App.vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化