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/