You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`DocsExample`| Live examples from `examples/` with code |
144
144
|`DocsMarkup`| Syntax-highlighted code blocks |
145
145
|`DocsApi`| Auto-generated API tables with inline/links toggle |
@@ -194,7 +194,7 @@ import BasicExampleRaw from '@/examples/components/tabs/basic.vue?raw'
194
194
- UnoCSS utilities for all styling
195
195
- Prefer markdown for documentation pages
196
196
-**Examples**: Use `::: example` blocks in `.md` pages for live demos; use `<DocsExample>` directly only in `.vue` pages
197
-
-**Callouts**: Use `> [!TIP]`, `> [!WARNING]`, `> [!ERROR]`for alerts. Use `> [!ASKAI] question` to prompt Ask AI—phrase as a question the user would ask (e.g., "How do I add validation?"), not a question to the user. Use `> [!TOUR] tour-id` to embed a clickable tour callout—the tour name and description are pulled from the discovery registry automatically.
197
+
-**Callouts**: Use `> [!TIP]`, `> [!NOTE]`, `> [!WARNING]`, `> [!CAUTION]`, `> [!IMPORTANT]`for alerts (GitHub-aligned). Use `> [!ASKAI] question` to prompt Ask AI—phrase as a question the user would ask (e.g., "How do I add validation?"), not a question to the user. Use `> [!TOUR] tour-id` to embed a clickable tour callout—the tour name and description are pulled from the discovery registry automatically.
198
198
-**Vue code in markdown fences**: Indent `<script>` and `<style>` content by 2 spaces for visual alignment with `<template>`
199
199
- Examples: `src/examples/components/{component}/` or `src/examples/composables/{composable}/`
Copy file name to clipboardExpand all lines: apps/docs/src/pages/components/semantic/image.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Headless image component with state-driven placeholder and error fallback. Track
49
49
</template>
50
50
```
51
51
52
-
> [!INFO]
52
+
> [!NOTE]
53
53
> `src` is the only native image attribute that doesn't live on `Image.Img` because it drives the load state machine — the `idle → loading → loaded | error` lifecycle can't function without knowing the URL to track, so `Image.Root` owns it. Every other image attribute (`alt`, `width`, `height`, `srcset`, `sizes`, `crossorigin`, `referrerpolicy`, `decoding`, `loading`, `fetchpriority`) is a pure rendering concern and lives on `Image.Img`, where it describes the element that actually renders it.
Copy file name to clipboardExpand all lines: apps/docs/src/pages/composables/plugins/use-date.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ app.use(
62
62
)
63
63
```
64
64
65
-
> [!INFO]
65
+
> [!NOTE]
66
66
> The `adapter` option is **required**. The `V0DateAdapter` is exported from a separate subpath (`@vuetify/v0/date`) to avoid bundling the Temporal polyfill unless explicitly used. If you don't need date functionality, simply don't install the plugin—no polyfill will be loaded.
0 commit comments