Skip to content

useOnline

类别
导出体积
900 B
上次更改
4 months ago

响应式的在线状态。是 useNetwork 的封装。

示例

请断开网络查看更改
状态:Online

使用方法

js
import { useOnline } from '@vueuse/core'

const online = useOnline()

组件使用

vue
<template>
  <UseOnline v-slot="{ isOnline }">
    是否在线: {{ isOnline }}
  </UseOnline>
</template>

类型声明

typescript
/**
 * 响应式在线状态。
 *
 * @see https://vueuse.org/useOnline
 * @param options
 */
export declare function useOnline(
  options?: ConfigurableWindow,
): Readonly<Ref<boolean, boolean>>

源码

源码演示文档

贡献者

Anthony Fu
一纸忘忧
Anthony Fu
vaakian X
Mike Jules
wheat
Alex Kozack
Antério Vieira

更新日志

v12.0.0-beta.1 on 11/21/2024
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)
v9.11.0 on 1/17/2023
d5321 - fix(components): mark defineComponent as pure (#2623)