1 Star 3 Fork 2

dpwgc / dpwgc_im_web.即时通讯聊天APP前端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 642 Bytes
一键复制 编辑 原始数据 按行查看 历史
dpwgc 提交于 2021-12-28 21:39 . 群组通知调整
import Vue from 'vue'
import App from './App'
import uView from "uview-ui";
//导入请求封装方法
import request from 'common/request.js'
Vue.prototype.$request = request;
Vue.use(uView);
Vue.config.productionTip = false;
//后端链接
Vue.prototype.$url = "http://127.0.0.1:8092";
var baseUrl = Vue.prototype.$url
//后端websocket链接
Vue.prototype.$ws = "ws://127.0.0.1:80";
//APP本地版本信息
const _appVer = "0.0.1";
const _verContent = "调试";
const _createTime = "2021-06-24 10:53:56";
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
export {
baseUrl,
_appVer,
_verContent,
_createTime
}
1
https://gitee.com/dpwgc/dpwgc_im_web.git
git@gitee.com:dpwgc/dpwgc_im_web.git
dpwgc
dpwgc_im_web
dpwgc_im_web.即时通讯聊天APP前端
master

搜索帮助