vue axios创建实例
const instance = axios.create({
baseURL: 'http://123.207.32.32:8000',
timeout: 1000,
});
instance({
method: 'get',
url: '/home/data',
params: {
type: 'sell',
page: 1
}
}).then(res => {
console.log(res)
})
const instance = axios.create({
baseURL: 'http://123.207.32.32:8000',
timeout: 1000,
});
instance({
method: 'get',
url: '/home/data',
params: {
type: 'sell',
page: 1
}
}).then(res => {
console.log(res)
})