--- category: Sensors --- # usePageLeave Reactive state to show whether the mouse leaves the page. ## Usage ```ts import { usePageLeave } from '@vueuse/core'; const isLeft = usePageLeave(); ``` ## Component Usage ```vue ``` ## Type Declarations ```ts /** * Reactive state to show whether mouse leaves the page. * * @see https://vueuse.org/usePageLeave * @param options * * @__NO_SIDE_EFFECTS__ */ export declare function usePageLeave(options?: ConfigurableWindow): ShallowRef; export type UsePageLeaveReturn = ReturnType; ```