1 Star 0 Fork 3

小子BeBad/uni-tv

forked from lixinjava/uni-tv 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 597 Bytes
一键复制 编辑 原始数据 按行查看 历史
lixinjava 提交于 2021-11-08 03:46 . 小更新
import Vue from 'vue'
import App from './App'
import store from './store'
import {
http
} from '@/api/service.js' // 全局挂载引入,配置相关在该index.js文件里修改
Vue.prototype.$http = http
Vue.prototype.$tv = store
if (process.env.NODE_ENV === 'development') {
Vue.prototype.host = 'http://119.97.159.200';
} else {
Vue.prototype.host = 'http://119.97.159.200';
}
http.config.baseURL = Vue.prototype.host
// 全局mixin
import mixin from './mixin'
Vue.mixin(mixin)
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/XiaoZiBeBad/uni-tv.git
git@gitee.com:XiaoZiBeBad/uni-tv.git
XiaoZiBeBad
uni-tv
uni-tv
master

搜索帮助