7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
|
const getWeatherInfo = (params) => {
|
||
|
return $axios({
|
||
|
url: '/api/weather',
|
||
|
method: 'post',
|
||
|
params
|
||
|
})
|
||
|
}
|