fast-vue-multi-pages-vite 1.3.3 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1204,10 +1204,10 @@ var FastVueMultiTimeout = class FastVueMultiTimeout {
|
|
|
1204
1204
|
window["TimeoutFlag" + code] = true;
|
|
1205
1205
|
window["Timeout" + code] = setTimeout(() => {
|
|
1206
1206
|
if (!window["TimeoutFlag" + code]) return;
|
|
1207
|
+
FastVueMultiTimeout.stopTimeout(code);
|
|
1207
1208
|
if (callback) callback({ isStopped: () => {
|
|
1208
1209
|
return window["TimeoutFlag" + code];
|
|
1209
1210
|
} });
|
|
1210
|
-
FastVueMultiTimeout.stopTimeout(code);
|
|
1211
1211
|
}, duration);
|
|
1212
1212
|
}
|
|
1213
1213
|
/**
|