Releases: chantouchsek/vue-axios-http
Releases · chantouchsek/vue-axios-http
v0.0.16
Release Note
Query string will be able to accept as object in PR #15
Example:
https://my-web-url.com?search[name]=touch&search[active]=true&page[offset]=1&page[limit]=10&categoryId=6
Data response from query string as:
{
search: {
name: 'touch',
active: true
},
page: {
offset: 1,
limit: 10
},
categoryId: 6
}
v0.0.14
v0.0.13
Added support to be able to setParameter() only key.
Example:
const queryString = 'limit=1&page=1&search=abc'
proxy.setParameter(queryString)
v0.0.12
v0.0.11
v0.0.10-alpha.2
- check if node or browser process to prevent from FormData is not defined.