vue-wait
vue-wait copied to clipboard
Complex Loader and Progress Management for Vue/Vuex and Nuxt Applications
For now we need add to much mess code for using loading. Initiate start loading before action calling and call stop loading before each return or inside `finally` block. Is...
I would like to write a unit test with the async action such as: **File navigation.spec.js:** `import Vue from 'vue' import Vuex from 'vuex' import Vuetify from 'vuetify' import vueLoading...
1. Would be allow trigger NuxtJS [loading api](https://nuxtjs.org/api/configuration-loading/) on some loaders (provide regex pattern/filter callback) 2. Integrations with axios like in https://github.com/tahq69/vue-loading (maybe using loading percents calculation)
I noticed while I was uisng the `v-wait` component, my component that I was wrapping was being created twice. First on initial load, then again after my call to my...
Hello! In examples/vuex-example/main.vue there is ` ...mapWaitingActions({ incrementAsync: 'incrementing count', }),` , where string is `"incrementing count"`, but in usage above there is ``, where "for" is equal to `"incrementing"`....
Use `aria-busy` for the loading elements. Refs: https://accessibilityresources.org/aria-busy
i've tryed to link a loader to `$wait.is(['routing', 'fetch detail*', 'set status', 'fetch dashboard*'])` but all the fetch details (es. 'fetch detail documents' or 'fetch detail user') and all the...
Hi, There are some minification issues on Safari iphone because package.json points to dist/vue-wait.js instead of src/vue-wait.js. ` "main": "dist/vue-wait.js", ` Happens only on old Safari versions, below version 11....
Maybe we can create a static [@storybook/vue](https://github.com/storybooks/storybook) for `gh-pages` branch.
Sometimes the response is too fast (e.g. cache) so delay is good solution to avoid loading spinner if that's shows only for few milliseconds. Here is my util fot that:...