Skip to content

Releases: chantouchsek/vue-axios-http

v0.0.16

19 Feb 17:31
aa47b9b
Compare
Choose a tag to compare

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

16 Feb 06:19
Compare
Choose a tag to compare
  • bug fixed

v0.0.13

16 Feb 04:12
Compare
Choose a tag to compare

Added support to be able to setParameter() only key.
Example:

const queryString = 'limit=1&page=1&search=abc'
proxy.setParameter(queryString)

v0.0.12

23 Nov 05:09
Compare
Choose a tag to compare
  • accepted message as string value

v0.0.11

19 Nov 05:07
Compare
Choose a tag to compare
  • added $errorsKeyName to be able to use custom error key name from server.

v0.0.10-alpha.2

22 Oct 14:50
Compare
Choose a tag to compare
  • check if node or browser process to prevent from FormData is not defined.

v0.0.9

17 Oct 15:05
Compare
Choose a tag to compare
  • Added putWithFile method to be able upload file with put method, it will call the same as put method.

v0.0.7

16 Oct 15:08
Compare
Choose a tag to compare
  • Fix bugs and improvements.

V0.0.6

14 Oct 10:59
Compare
Choose a tag to compare
v0.0.6

chore: :alembic: option ComponentOptions