UNPKG

@cran/lib.vue.ref

Version:

Vue Reactivity Extensions

12 lines (11 loc) 239 B
import { onUnmounted } from "vue"; import { withScope } from "./withScope"; /** * @since 0.2.1 * @category Utility */ export function tryOnUnmounted(fn) { return withScope(function doWithScope() { onUnmounted(fn); }); }