current vue's js output
api
.post(apiPath.getThirdGroupDetail, {
params: {
...
},
})
.then((result) => {
...
}
I want output
api.post(apiPath, {
params: {
...
},
})
.then((result) => {
...
}
How should I configure it to achieve the desired effect . thanks in advance