1 Star 0 Fork 67

折木/ThorUI-uniapp

forked from Eve996/ThorUI-uniapp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 783 Bytes
一键复制 编辑 原始数据 按行查看 历史
echo0214 提交于 2022-02-24 20:23 . V1.7.2更新
import App from './App'
import store from './store'
import tui from './common/httpRequest'
// #ifdef H5
window.QQmap = null;
// #endif
// #ifndef MP-TOUTIAO
//网络监听
setTimeout(() => {
uni.onNetworkStatusChange(function(res) {
//console.log(res.networkType);
store.commit("networkChange", {
isConnected: res.isConnected
})
});
}, 100)
// #endif
// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
Vue.prototype.tui = tui
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
// #endif
// #ifdef VUE3
import {
createSSRApp
} from 'vue'
export function createApp() {
const app = createSSRApp(App)
app.use(store)
app.config.globalProperties.tui = tui;
return {
app
}
}
// #endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/q-_-p/ThorUI-uniapp.git
git@gitee.com:q-_-p/ThorUI-uniapp.git
q-_-p
ThorUI-uniapp
ThorUI-uniapp
master

搜索帮助