0๐
<v-progress-linear v-if=true indeterminate></v-progress-linear>
Try changing the prop indeterminate as in snippet. The progress bar display depends on V-if evaluation. If Your v-if results in true, the progress bar will be displayed and will have continuously animation of progress.
If v-if results in false you will not see the progress bar . So set v-if when save is complete (may be once you get a signal from backend if you have set up that way).
- [Vuejs]-Rails + Vue.js axios POST getting 406 Unknown Error
- [Vuejs]-Passing time from my function to data() time: in vuejs
Source:stackexchange.com