6 lines
110 B
JavaScript
6 lines
110 B
JavaScript
// 添加请求拦截器
|
|
export default (config) => {
|
|
// 在发送请求之前做些什么
|
|
return config;
|
|
}
|