vue-resource icon indicating copy to clipboard operation
vue-resource copied to clipboard

Fix GET overload with config not typed

Open devTeaa opened this issue 3 years ago • 0 comments

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

devTeaa avatar Oct 26 '22 05:10 devTeaa