3 Star 30 Fork 22

CHINAIoTOS/IoTOS-App

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 971 Bytes
一键复制 编辑 原始数据 按行查看 历史
iotcard 提交于 2023-07-30 20:33 . iotos-app v0.6.0 更新
import Vue from 'vue'
import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import './permission' // permission
import messages from './locale/index'
import { getDicts } from "@/api/system/dict/data";
import { getNameOpen,getName } from "@/api/iotos/connect/channel";
// 挂在全局自定义的tarbar
import tabBar from '@/components/tabbar/myTabbar.vue';
Vue.component('tabbar',tabBar) //挂载
import VueI18n from 'vue-i18n'
let i18nConfig = {
locale: uni.getLocale(),
messages
}
// 全局方法挂载
Vue.prototype.getDicts = getDicts
Vue.prototype.getNameOpen = getNameOpen
Vue.prototype.getName = getName
Vue.use(VueI18n)
const i18n = new VueI18n(i18nConfig)
// 引入全局 uview 框架
import uView from 'uni_modules/uview-ui'
Vue.use(uView)
Vue.use(plugins)
Vue.config.productionTip = false
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
i18n,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/chinaiot/iotos-app.git
[email protected]:chinaiot/iotos-app.git
chinaiot
iotos-app
IoTOS-App
master

搜索帮助