当前位置: 首页 > Web前端 > vue.js

解决VUE跨域问题

时间:2023-04-01 12:13:26 vue.js

在vue项目根目录新建vue.config.js文件:module.exports={devServer:{proxy:{'/api':{target:'http://localhost:8000',changeOrigin:true,pathRewrite:{'^/api':''}}}}}其他接口调用//添加/api地址指向http://localhost:8000,system/slider/列表//api/系统/滑块/列表/