Files
moeka-project/.agents/skills/vueuse-functions/references/usePageLeave.md
T
2026-03-16 00:19:06 +08:00

738 B

category
category
Sensors

usePageLeave

Reactive state to show whether the mouse leaves the page.

Usage

import { usePageLeave } from '@vueuse/core'

const isLeft = usePageLeave()

Component Usage

<template>
  <UsePageLeave v-slot="{ isLeft }">
    Has Left Page: {{ isLeft }}
  </UsePageLeave>
</template>

Type Declarations

export interface UsePageLeaveOptions extends ConfigurableWindow {}
export type UsePageLeaveReturn = ShallowRef<boolean>
/**
 * Reactive state to show whether mouse leaves the page.
 *
 * @see https://vueuse.org/usePageLeave
 * @param options
 *
 * @__NO_SIDE_EFFECTS__
 */
export declare function usePageLeave(
  options?: UsePageLeaveOptions,
): UsePageLeaveReturn