This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Description
In Devtools, Request Payload becomes [object Object]
Vue-resource version: 0.9.3
// this works
const data = [{}, {}, {}]
const body = JSON.stringify(data)
return Vue.http({ url, method, body })
// doesn't work
const body = [{}, {}, {}]
return Vue.http({ url, method, body })
}
JSON.stringify is required, which is annoying.
However, both work if POST body as Object.
Is anything to be improved?
Cheers!