vue 跨域处理
vue.config.js中配置
module.exports = defineConfig({
transpileDependencies: true,
dev:{
proxyTable:{
'/api':{
target:'http://localhost:8088',
changeOrigin:true,
pathRewrite:{
'^SymbolYCp/api':''
}
}
}
}
});
main.js中
axios.defaults.baseURL='/api'