UNPKG

@ant-design-vue/use

Version:

Vue 3 Composition Api Library.

7 lines 143 B
export function sleep(time) { return new Promise(function (resolve) { setTimeout(function () { resolve(true); }, time); }); }