加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 692 Bytes
一键复制 编辑 原始数据 按行查看 历史
牛天护 提交于 2019-08-14 00:12 . 更换目录
//每次加载都刷新模块缓存
for( key in require.cache ){
delete require.cache[key];
}
global.path = __dirname;
// 若是没有开启Devtools工具,在开发环境中开启,在生产环境中关闭
// if (process.env.NODE_ENV == 'development') {
// Vue.config.devtools = true;
// } else {
// Vue.config.devtools = false;
// }
Vue.config.devtools = true;
const router = new VueRouter({
routes:require('./router.js'),
});
var app = new Vue({
el:'#app',
router:router,
data:{
},
mounted:function(){
this.init();
},
methods:{
init:function(){
//先跳登陆页面
this.$router.push({ path: '/login/index'});
//this.$router.push({ path: '/'});
}
},
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化