unset.ts 164 B

12345678
  1. import { nextTick } from "vue"
  2. export let isUnSet = false
  3. export const unSet = ((fn: () => void) => {
  4. isUnSet = true
  5. fn()
  6. nextTick(() => isUnSet = false)
  7. })