Pulled ALL skills from 15 source repositories: - anthropics/skills: 16 (docs, design, MCP, testing) - obra/superpowers: 14 (TDD, debugging, agents, planning) - coreyhaines31/marketingskills: 25 (marketing, CRO, SEO, growth) - better-auth/skills: 5 (auth patterns) - vercel-labs/agent-skills: 5 (React, design, Vercel) - antfu/skills: 16 (Vue, Vite, Vitest, pnpm, Turborepo) - Plus 13 individual skills from various repos Mosaic Stack is not limited to coding — the Orchestrator and subagents serve coding, business, design, marketing, writing, logistics, analysis, and more. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
894 B
Markdown
48 lines
894 B
Markdown
---
|
|
category: Browser
|
|
---
|
|
|
|
# useSSRWidth
|
|
|
|
Used to set a global viewport width which will be used when rendering SSR components that rely on the viewport width like [`useMediaQuery`](../useMediaQuery/index.md) or [`useBreakpoints`](../useBreakpoints/index.md)
|
|
|
|
## Usage
|
|
|
|
```ts
|
|
import { provideSSRWidth } from '@vueuse/core'
|
|
|
|
const app = createApp(App)
|
|
|
|
provideSSRWidth(500, app)
|
|
```
|
|
|
|
Or in the root component
|
|
|
|
```vue
|
|
<script setup lang="ts">
|
|
import { provideSSRWidth } from '@vueuse/core'
|
|
|
|
provideSSRWidth(500)
|
|
</script>
|
|
```
|
|
|
|
To retrieve the provided value if you need it in a subcomponent
|
|
|
|
```vue
|
|
<script setup lang="ts">
|
|
import { useSSRWidth } from '@vueuse/core'
|
|
|
|
const width = useSSRWidth()
|
|
</script>
|
|
```
|
|
|
|
## Type Declarations
|
|
|
|
```ts
|
|
export declare function useSSRWidth(): number | undefined
|
|
export declare function provideSSRWidth(
|
|
width: number | null,
|
|
app?: App<unknown>,
|
|
): void
|
|
```
|