I need to disable integration with the progress bar, for one method, because it runs a lot of sequential queries.
async loaderMethod(params) {
for (let i = 0; i<100; i++) {
await this.$axios.$get('URL', {params}, {
progress: false, // Disable integration with the progress bar specifically for this query
})
this.$nuxt.$loading.set(i) // Change the progress bar status manually
}
}
Thanks for the suggestion. Will be possible in next release using:
this.$axios.$get('URL', { progress: false })
How to use it? I am trying to do but don't know where to call it. Thanks
Any updates here?
Works, but is currently broken due to axios. See #258 for more
Most helpful comment
Thanks for the suggestion. Will be possible in next release using: