vue-resource
vue-resource copied to clipboard
Fix GET overload with config not typed
The http get params not getting properly typed because of the 2nd params on first overload is assigned with any
Vue.http.get('something', { params: { foo: 'Foo' } }) // <-- the object is read as any
expected
Vue.http.get('something', { params: { foo: 'Foo' } }) // <-- the object should have autocomplete config