zmc
2023-08-30 d3d7dcf919eda40a415b6dc744fb0b347d4293a8
1
2
3
4
5
6
7
8
9
import axios from 'axios'
 
const baseUrl = 'http://127.0.0.1:5000' // 基础URL
 
const axiosInstancePy = axios.create({
  baseURL: baseUrl
})
 
export default axiosInstancePy