vue项目根目录新建vue.config.js文件:
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}
其他接口调用
//加上/api 地址指向到 http://localhost:8000、system/slider/list/
/api/system/slider/list/
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。