使用vue cli 3.x 创建的项目,有一个选项:Use history mode for router? (Requires proper server setup for index fallback in production)(Y/n) 选了Y. 但查了后,发现ie浏览器history模式只支持10及以上, https://caniuse.com/#search=history 如何改回来hash模式? 打开/src/router.js 修改 mode: 'history',为mode…
1.小小的提一下vue cli脚手架前端调后端数据接口时候的本地代理跨域问题,如我在本地localhost访问接口http://40.00.100.100:3002/是要跨域的,相当于浏览器设置了一道门槛,会报错XMLHTTPRequest can not load http://40.00.100.100:3002/. Response to preflight request doesn’t pass access control…. 为什么跨域同源非同源自己去查吧,在webpack配置一下…