hootlex/vuejs-paginator

TypeError: Cannot read property 'get' of undefined

JugnuPathak opened this issue · 1 comments

Im getting error

[Vue warn]: Error in created hook: "TypeError: Cannot read property 'get' of undefined"

found in

---> <VPaginator>
       <Root>

https://jsfiddle.net/JunedLanja/oty8w8go/1/

Thanks for the repro link!

This happens because Vue.prototype.$http is null. You have to either use Vue Resource or set Vue.prototype.$http = axios if you are using axios.

Duplicate of #24