Skip to content

useSSRWidth

Category
Export Size
Last Changed
3 months ago

用于设置全局视口宽度,该宽度将在渲染依赖视口宽度的 SSR 组件时使用,如 useMediaQueryuseBreakpoints

用法

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

const app = createApp(App)

provideSSRWidth(500, app)

或者在根组件中

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

provideSSRWidth(500)
</script>

如果需要,可以在子组件中获取提供的值

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

const width = useSSRWidth()
</script>

Type Declarations

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

Source

SourceDocs

Contributors

丶远方
Anthony Fu
Adrien Foulon

Changelog

55965 - feat: add optional support for SSR in useMediaQuery and useBreakpoints (#4317)

Released under the MIT License.