UNPKG

create-iking-admin

Version:

金合技术中台脚手架

19 lines (15 loc) 308 B
import { nextTick, onMounted, onActivated } from 'vue'; export function onMountedOrActivated(hook: Fn) { let mounted: boolean; onMounted(() => { hook(); nextTick(() => { mounted = true; }); }); onActivated(() => { if (mounted) { hook(); } }); }