UNPKG

ant-design-vue

Version:

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

9 lines 230 B
import { onBeforeUnmount, shallowRef } from 'vue'; const useDestroyed = () => { const destroyed = shallowRef(false); onBeforeUnmount(() => { destroyed.value = true; }); return destroyed; }; export default useDestroyed;