Closed
Description
Hello, I have a page that includes a few smaller lists of movies. I ran into a problem when trying to implement on-infinite callback function:
This throws "TypeError: Cannot read property 'call' of undefined":
<infinite-loading :on-infinite="getMicroList('releases')" ref="releases" spinner="circles">
while this is ok:
<infinite-loading :on-infinite="getMicroList" ref="releases" spinner="circles">
Are multiple lists even possible on the same page without having to copy all the callback function code over and over again?