I have a VUE JS 2 app with quite a lot of api calls and images in masonry.
When i open a page, all fetch request start and if i switch view, through a router-link:
<router-link :to="'/user/'+artistInfos.user_addr+'/collection'" @click.native="resetArtistScroll()" exact tag="li" :class="{active: $route.name == 'user-collection'}">
COLLECTION
</router-link>
it load a different content/component into the area where the initial content was called.
Problem i face is all previous fetch calls keep going and delay the calls of the new content.
Is there a way to clear all this in the view before loading the new content?