Skip to content

useSSRWidth

类别
导出体积
上次更改
3 weeks ago

Used to set a global viewport width which will be used when rendering SSR components that rely on the viewport width like useMediaQuery or useBreakpoints

Usage

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

const app = createApp(App)

provideSSRWidth(500, app)

Or in the root component

vue
<script setup>
import { provideSSRWidth } from '@vueuse/core'

provideSSRWidth(500)
</script>

To retrieve the provided value if you need it in a subcomponent

vue
<script setup>
import { useSSRWidth } from '@vueuse/core'

const width = useSSRWidth()
</script>

类型声明

typescript
export declare function useSSRWidth(): number | undefined
export declare function provideSSRWidth(
  width: number | null,
  app?: App<unknown>,
): void

源码

源码文档

贡献者

Adrien Foulon

更新日志

v12.1.0 on 12/22/2024
55965 - feat: add optional support for SSR in useMediaQuery and useBreakpoints (#4317)