2
This commit is contained in:
22
normal-admin/node_modules/element-plus/lib/hooks/use-timeout/index.js
generated
vendored
Normal file
22
normal-admin/node_modules/element-plus/lib/hooks/use-timeout/index.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
var core = require('@vueuse/core');
|
||||
|
||||
function useTimeout() {
|
||||
let timeoutHandle;
|
||||
const registerTimeout = (fn, delay) => {
|
||||
cancelTimeout();
|
||||
timeoutHandle = window.setTimeout(fn, delay);
|
||||
};
|
||||
const cancelTimeout = () => window.clearTimeout(timeoutHandle);
|
||||
core.tryOnScopeDispose(() => cancelTimeout());
|
||||
return {
|
||||
registerTimeout,
|
||||
cancelTimeout
|
||||
};
|
||||
}
|
||||
|
||||
exports.useTimeout = useTimeout;
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user