摘要:
阻止事件冒泡 window.enent ? window.enent.cancelBubble = true : e.stopPropagation() function stopBubble(event){ if(window.event){//兼容IE window.event.cancelBubble=true; }else{ event.stopPropagation(); } ... 阅读全文
摘要:
目录 : config/index.jsmodule.exports = { dev: { // Paths assetsSubDirectory: 'static', assetsPublicPath: '/', //代理配置 proxyTable: { '/api':{ //使用api 来代替 http://localhost:30... 阅读全文