Thanks for the list code, it's very helpful!
I had a problem while using the list in a tab view. When I tried to move from another tab to this one, sometimes the list crashed in setScrollTop (something like: can't set attribute 'scrollTop' to an undefined object)
Can you add something like:
// set manual scroll top.
setScrollTop: function (scrollTop) {
if (!this.$refs || !this.$refs.vsl)
return;
this.$refs.vsl.scrollTop = scrollTop
},
I think that this is also necessary in onScroll
Thanks!