element-plus/packages/test-utils/tick.ts
2020-09-14 23:43:45 +08:00

10 lines
140 B
TypeScript

import { nextTick } from 'vue'
const tick = async (times: number) => {
while (times--) {
await nextTick()
}
}
export default tick