useSupported
SSR compatibility isSupported
Usage
ts
import { useSupported } from '@vueuse/core'
const isSupported = useSupported(() => navigator && 'getBattery' in navigator)
if (isSupported.value) {
// do something
navigator.getBattery
}
import { useSupported } from '@vueuse/core'
const isSupported = useSupported(() => navigator && 'getBattery' in navigator)
if (isSupported.value) {
// do something
navigator.getBattery
}
Type Declarations
typescript
export declare function useSupported(
callback: () => unknown,
sync?: boolean
): Ref<boolean>
export declare function useSupported(
callback: () => unknown,
sync?: boolean
): Ref<boolean>
Source
Contributors
Jelf