5 Star 0 Fork 0

①輩孒oоΟ〤/zhxf_app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
池浅 提交于 2022-04-19 20:41 . 新增一个websocket类型
import Vue from 'vue'
import App from './App'
import store from './store/index.js'
//把vuex定义成全局组件
Vue.prototype.$store = store
import native from "./static/js/native.js"
import utils from "./utils/utils.js"
import {getDicts, selectDictLabel} from "./utils/dict.js"
Vue.prototype.utils = utils
Vue.prototype.getDicts = getDicts
Vue.prototype.selectDictLabel = selectDictLabel
// import vConsole from "./utils/vConsole.js";
// Vue.use(vConsole)
import fireAlarm from './components/fireAlarm/index';
Vue.use(fireAlarm);
import message from './components/message/index';
Vue.use(message);
import wbmessage from './components/wbmessage/index';
Vue.use(wbmessage);
import noticemessage from './components/noticemessage/index';
Vue.use(noticemessage);
Vue.config.productionTip = false
window.native = native
import * as filters from './utils/filter.js'
Object.keys(filters).forEach(key => {
Vue.filter(key, filters[key])
})
import BaiduMap from 'vue-baidu-map'
Vue.use(BaiduMap, {
// ak 是在百度地图开发者平台申请的密钥 详见 http://lbsyun.baidu.com/apiconsole/key */
ak: 'ZSRUISx1teltvqZBo6Y847xeMTc3XkKW'
})
// main.js
import uView from "uview-ui";
Vue.use(uView);
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaoyanhui/zhxf_app.git
git@gitee.com:gaoyanhui/zhxf_app.git
gaoyanhui
zhxf_app
zhxf_app
master

搜索帮助