加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 815 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘林萧 提交于 2021-01-06 14:29 . 提交代码
import Vue from 'vue'
import App from './App'
import store from './store'
import $http from '@/js_sdk/requestConfig';
import $httpJSON from '@/js_sdk/requestJSON';
import router from './router'
import { RouterMount } from 'uni-simple-router'
import routerLink from './node_modules/uni-simple-router/component/router-link.vue'
Vue.component('router-link',routerLink)
Vue.prototype.$http = $http;
Vue.prototype.$httpJSON = $httpJSON;
Vue.prototype.$store = store;
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App,
store
})
// app.$mount()
//v1.3.5起 H5端 你应该去除原有的app.$mount();使用路由自带的渲染方式
// #ifdef H5
RouterMount(app,'#app');
// #endif
// #ifndef H5
app.$mount(); //为了兼容小程序及app端必须这样写才有效果
// #endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化