element-plus/packages/test-utils/tick.ts

10 lines
140 B
TypeScript
Raw Normal View History

2020-09-10 19:07:24 +08:00
import { nextTick } from 'vue'
const tick = async (times: number) => {
while (times--) {
await nextTick()
}
}
export default tick