UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

13 lines 293 B
import { getCurrentScope, onScopeDispose } from 'vue'; /** * Call onScopeDispose() if it's inside a effect scope lifecycle, if not, do nothing * * @param fn */ export function tryOnScopeDispose(fn) { if (getCurrentScope()) { onScopeDispose(fn); return true; } return false; }