Skip to content

useOnline

Category
Export Size
830 B
Last Changed
15 minutes ago

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

Demo

请断开网络查看更改
状态: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>>

Source

SourceDemoDocs

贡献者

Anthony Fu
丶远方
Anthony Fu
vaakian X
Mike Jules
wheat
Alex Kozack
Antério Vieira

变更日志

v9.11.0 on 1/17/2023
d5321 - fix(components): mark defineComponent as pure (#2623)

Released under the MIT License.