03 2019 档案

摘要:记录,方便以后工作查阅 作者:左手121 来源:CSDN 原文: https://blog.csdn.net/qq_20282263/article/details/80859589 基本配置 git config --global user.name "name" : 配置用户名git confi 阅读全文
posted @ 2019-03-27 15:39 雨下大了没 阅读(224) 评论(0) 推荐(0) 编辑
摘要:阻止事件冒泡 window.enent ? window.enent.cancelBubble = true : e.stopPropagation() function stopBubble(event){ if(window.event){//兼容IE window.event.cancelBubble=true; }else{ event.stopPropagation(); } ... 阅读全文
posted @ 2019-03-13 11:55 雨下大了没 阅读(279) 评论(0) 推荐(0) 编辑
摘要:目录 : config/index.jsmodule.exports = { dev: { // Paths assetsSubDirectory: 'static', assetsPublicPath: '/', //代理配置 proxyTable: { '/api':{ //使用api 来代替 http://localhost:30... 阅读全文
posted @ 2019-03-05 22:50 雨下大了没 阅读(1085) 评论(0) 推荐(0) 编辑