I'm new to vuejs, I'm trying to do some data downloading from inside Vue View, using function inside methods, I wonder if I leave that view(change route), is the downloading process still running? (in this case I'm downloading from firestore, some huge databases)
Any advice on how it should be done? So that the database download keep running regardless of route change?
Any help is much appreciated
Edit: To clarify, my case are like this :
- User open some page
- The page download some data in background(will take some time)
- User move to another page
What I'm asking are how did I make the data download process continue running, even though user move to another route?