1 Star 0 Fork 128

MrShih/usemall

forked from Usecloud/usemall 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 933 Bytes
一键复制 编辑 原始数据 按行查看 历史
b n 提交于 2021-06-07 00:18 . 1.【完成】产品海报
import Vue from 'vue'
import App from './App'
import $config from './common/config.js'
import $api from './common/common.js'
import $db from './common/db.js'
import $func from './common/func.js'
import $store from './common/store.js'
// #ifdef H5 || MP-360
import $iscroll from './common/iscroll.js'
Vue.prototype.$iscroll = $iscroll
uni.canIUse = function(name) {
return name in uni;
}
// #endif
// 测试阶段
$config.debug = process.env.NODE_ENV === 'development';
if (!$config.debug) {
// 取消日志打印功能
console.log = () => { }
}
// 注册当前环境
$api.register_env((env) => {
Vue.prototype.$env = env;
});
Vue.config.productionTip = false
Vue.prototype.$config = $config
Vue.prototype.$api = $api
Vue.prototype.$db = $db
Vue.prototype.$dbcmd = uniCloud.database().command;
Vue.prototype.$func = $func
Vue.prototype.$store = $store
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/mrshih/usemall.git
git@gitee.com:mrshih/usemall.git
mrshih
usemall
usemall
master

搜索帮助