useScreenOrientation
Reactive Screen Orientation API. It provides web developers with information about the user's current screen orientation.
Demo
 For best results, please use a mobile or tablet device (or use your browser's native inspector to simulate an orientation change) 
 isSupported: true
Orientation Type: landscape-primary
Orientation Angle: 0
Usage
ts
import { useScreenOrientation } from '@vueuse/core'
const {
  isSupported,
  orientation,
  angle,
  lockOrientation,
  unlockOrientation,
} = useScreenOrientation()
import { useScreenOrientation } from '@vueuse/core'
const {
  isSupported,
  orientation,
  angle,
  lockOrientation,
  unlockOrientation,
} = useScreenOrientation()
To lock the orientation, you can pass an OrientationLockType to the lockOrientation function:
ts
import { useScreenOrientation } from '@vueuse/core'
const {
  isSupported,
  orientation,
  angle,
  lockOrientation,
  unlockOrientation,
} = useScreenOrientation()
lockOrientation('portrait-primary')
import { useScreenOrientation } from '@vueuse/core'
const {
  isSupported,
  orientation,
  angle,
  lockOrientation,
  unlockOrientation,
} = useScreenOrientation()
lockOrientation('portrait-primary')
and then unlock again, with the following:
ts
unlockOrientation()
unlockOrientation()
Accepted orientation types are one of "landscape-primary", "landscape-secondary", "portrait-primary", "portrait-secondary", "any", "landscape", "natural" and "portrait".
Type Declarations
typescript
/**
 * Reactive screen orientation
 *
 * @see https://vueuse.org/useScreenOrientation
 */
export declare const useScreenOrientation: (options?: ConfigurableWindow) => {
  isSupported: Ref<boolean>
  orientation: Ref<OrientationType | undefined>
  angle: Ref<number>
  lockOrientation: (type: OrientationLockType) => Promise<void>
  unlockOrientation: () => void
}
export declare type UseScreenOrientationReturn = ReturnType<
  typeof useScreenOrientation
>
/**
 * Reactive screen orientation
 *
 * @see https://vueuse.org/useScreenOrientation
 */
export declare const useScreenOrientation: (options?: ConfigurableWindow) => {
  isSupported: Ref<boolean>
  orientation: Ref<OrientationType | undefined>
  angle: Ref<number>
  lockOrientation: (type: OrientationLockType) => Promise<void>
  unlockOrientation: () => void
}
export declare type UseScreenOrientationReturn = ReturnType<
  typeof useScreenOrientation
>