You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have access to isFirstLoad variable inside <template v-slot:spinner>... via scoped-slot. Because sometimes it's normal to show skeleton loader or any other loader as initial loader ( just for the first loading ), and change it to other loader after it, for example:
<InfiniteLoading
@infinite="infinite"spinner="spiral"><templatev-slot:spinner="{ isFirstLoad }"><SkeletonLoaderv-if="isFirstLoad"></SkeletonLoader><spanv-else>Loading more messages...</span></template></InfiniteLoading>