加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 560 Bytes
一键复制 编辑 原始数据 按行查看 历史
falost 提交于 2021-12-17 22:01 . init: 第一次提交
import Vue from 'vue'
import App from './App'
import store from './store'
import settings from './settings'
import vuexStore from '@/store/$u.mixin.js'
import WxLogin from './utils/login'
// 引入全局uView
import uView from '@/uni_modules/uview-ui'
Vue.use(uView);
Vue.mixin(vuexStore);
Vue.config.productionTip = false
Vue.prototype.$static = settings.STATIC
Vue.prototype.$store = store
Vue.prototype.$settings = settings
Vue.prototype.$LOGIN = new WxLogin()
App.mpType = 'app'
const app = new Vue({
store,
...App,
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化