UNPKG

wetrade-design

Version:

一款多语言支持Vue3的UI框架

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; }