vue-loading-overlay icon indicating copy to clipboard operation
vue-loading-overlay copied to clipboard

Vue.js component for full screen loading indicator :cyclone:

Results 10 vue-loading-overlay issues
Sort by recently updated
recently updated
newest added

**I'm submitting a ...** (check one with "x") ``` [x] Bug report => search github for a similar issue or PR before submitting [ ] Feature request [ ] Other,...

I have something like this in my code: ``` watch: { loading: function (loading) { if (loading) { this.loader = this.$loading.show(); } else { this.loader.hide(); this.loader = null; } }...

enhancement

**Tell about your platform** * Vue.js version : 2.x with typescript * Browser name and version : Chrome|Firefox|Edge x.x.x * This package version : 3.x.x Hi how are you everybody?...

help wanted

I am using this control as a full-page cover to show activity during my ajax calls. However, once the call is completed, the focus is lost - it's set to...

enhancement

**I'm submitting a....** ``` [X] Bug report [ ] Feature request [ ] Other, please describe ``` **Tell about your platform** * Vue.js version : 3.2.37 * Browser name and...

Hello! First off, thanks a lot for this useful plugin :). Wanted to bring your attention to a behavior difference in your `useLoading` implementation vs. other plugins (such as vue-router's...

enhancement

Tell about your platform** * Vue.js version : 3.2 * This package version: 6.0.3 * Laravel 10 * Vite + Vue **Current behavior** When I am importing loading component in...

If you use it as a plugin and launch the loader via `useLoader().show()`, page scrolling is not blocked. I'm guessing the watcher's `isActive` needs to be set to `immediate: true`....

**I'm submitting a ...** (check one with "x") ``` [ ] Bug report => search github for a similar issue or PR before submitting [ ] Feature request [ ]...

According to [Vue Router](https://github.com/vuejs/router/blob/main/packages/router/CHANGELOG.md#441-2024-07-31) and the [Vue documentation](https://vuejs.org/guide/typescript/options-api.html#augmenting-global-properties), module augmentation has to be done on the `"vue"` module instead of the `"@vue/runtime-core"` module. Making this change solves the typescript issues...