-
Notifications
You must be signed in to change notification settings - Fork 244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How disable Integrated with Nuxt.js Progressbar for some request #112
Labels
Comments
cawa-93
changed the title
Disable Integrated with Nuxt.js Progressbar for some request
How disable Integrated with Nuxt.js Progressbar for some request
Mar 3, 2018
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 |
jrlucier
added a commit
to jrlucier/progress-bar-4-axios
that referenced
this issue
Feb 12, 2019
This allows you to make an Axios request without the progress bar popping up. This is useful for optional typeahead features and enhancing UI elements, that degrade cleanly and we don't need to inform the user about. This code is based on a similar Nuxt requirement: nuxt-community/axios-module#112 and commit: nuxt-community/axios-module@1530bb6 Example usage: this.$axios.$get('URL', { progress: false }) or this.$axios.$post('URL', 'data', { progress: false })
Any updates here? |
Works, but is currently broken due to axios. See #258 for more |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I need to disable integration with the progress bar, for one method, because it runs a lot of sequential queries.
The text was updated successfully, but these errors were encountered: