Skip to content

Commit f813884

Browse files
committed
docs: add no-filename to usage code fences
1 parent 456e428 commit f813884

22 files changed

+22
-22
lines changed

apps/docs/src/pages/composables/data/create-pagination.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A lightweight composable for managing pagination state with navigation methods a
2525

2626
The `createPagination` composable provides reactive pagination state management with navigation methods and automatic computation of visible page items with ellipsis support.
2727

28-
```ts
28+
```ts collapse no-filename
2929
import { ref } from 'vue'
3030
import { createPagination } from '@vuetify/v0'
3131

apps/docs/src/pages/composables/forms/create-form.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The form composables provide a powerful interface for managing form state, valid
2828

2929
Use `createForm` to create a new form instance:
3030

31-
```ts
31+
```ts collapse no-filename
3232
import { createForm } from '@vuetify/v0'
3333

3434
const form = createForm()

apps/docs/src/pages/composables/plugins/use-breakpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ app.mount('#app')
5353

5454
Once the plugin is installed, use the `useBreakpoints` composable in any component. Destructure the properties you need for automatic ref unwrapping in templates:
5555

56-
```vue UseBreakpoints
56+
```vue collapse no-filename UseBreakpoints
5757
<script setup lang="ts">
5858
import { useBreakpoints } from '@vuetify/v0'
5959

apps/docs/src/pages/composables/plugins/use-hydration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ app.mount('#app')
4242

4343
Once the plugin is installed, use the `useHydration` composable in any component. Destructure the properties for automatic ref unwrapping in templates:
4444

45-
```vue UseHydration
45+
```vue collapse no-filename UseHydration
4646
<script setup lang="ts">
4747
import { useHydration } from '@vuetify/v0'
4848

apps/docs/src/pages/composables/plugins/use-locale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ app.mount('#app')
5454

5555
Once the plugin is installed, use the `useLocale` composable in any component:
5656

57-
```vue UseLocale
57+
```vue collapse no-filename UseLocale
5858
<script setup lang="ts">
5959
import { useLocale } from '@vuetify/v0'
6060

apps/docs/src/pages/composables/plugins/use-logger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ app.mount('#app')
4646

4747
Once the plugin is installed, use the `useLogger` composable in any component:
4848

49-
```vue UseLogger
49+
```vue collapse no-filename UseLogger
5050
<script setup lang="ts">
5151
import { useLogger } from '@vuetify/v0'
5252

apps/docs/src/pages/composables/plugins/use-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ app.mount('#app')
4040

4141
Once the plugin is installed, use the `useStorage` composable in any component:
4242

43-
```vue UseStorage
43+
```vue collapse no-filename UseStorage
4444
<script setup lang="ts">
4545
import { useStorage } from '@vuetify/v0'
4646

apps/docs/src/pages/composables/plugins/use-theme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ app.mount('#app')
6161

6262
Once the plugin is installed, use the `useTheme` composable in any component:
6363

64-
```vue UseTheme
64+
```vue collapse no-filename UseTheme
6565
<script setup lang="ts">
6666
import { useTheme } from '@vuetify/v0'
6767

apps/docs/src/pages/composables/reactivity/use-proxy-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A composable for syncing refs bidirectionally with selection contexts, enabling
2525

2626
The `useProxyModel` composable syncs an existing ref (like from `defineModel()`) with a selection context bidirectionally. Changes in either direction automatically propagate.
2727

28-
```ts
28+
```ts collapse no-filename
2929
import { ref } from 'vue'
3030
import { createSelection, useProxyModel } from '@vuetify/v0'
3131

apps/docs/src/pages/composables/reactivity/use-proxy-registry.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The `useProxyRegistry` composable creates reactive objects that automatically sy
2626

2727
**Important:** The registry must have `events: true` enabled for the proxy to receive updates.
2828

29-
```ts
29+
```ts collapse no-filename
3030
import { createRegistry, useProxyRegistry } from '@vuetify/v0'
3131

3232
const registry = createRegistry({ events: true })

0 commit comments

Comments
 (0)