1 Star 0 Fork 0

/交油通前端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
提交于 2024-01-09 16:27 . first
import App from './App'
import http from '@/config/config.js'
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
//公共链接
Vue.prototype.$IMG_URL = http.IMG_URL;
Vue.prototype.$BASE_URL = http.BASE_URL;
// 注册全局组件
import MescrollBody from "@/uni_modules/mescroll-uni/components/mescroll-body/mescroll-body.vue";
import MescrollUni from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-uni.vue";
import toastModel from "@/components/toast-model/toastModel.vue";
Vue.component('mescroll-body', MescrollBody);
Vue.component('mescroll-uni', MescrollUni);
Vue.component('toast-model', toastModel);
import share from '@/commom/js/share.js';
Vue.mixin(share)
//跳转封装
Vue.prototype.$navigateTo = (url) => {
uni.navigateTo({
url
})
}
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
// #endif
// #ifdef VUE3
import {
createSSRApp
} from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/wendan2017/Jyt_Clinet.git
git@gitee.com:wendan2017/Jyt_Clinet.git
wendan2017
Jyt_Clinet
交油通前端
master

搜索帮助