diff --git a/docs/3.api/1.components/1.client-only.md b/docs/3.api/1.components/1.client-only.md index 86e56d2547..1d3b50cf38 100644 --- a/docs/3.api/1.components/1.client-only.md +++ b/docs/3.api/1.components/1.client-only.md @@ -51,3 +51,26 @@ The content of the default slot will be tree-shaken out of the server build. (Th ``` + +## Examples + +### Accessing HTML Elements + +Components inside `` are rendered only after being mounted. To access the rendered elements in the DOM, you can watch a template ref: + +```vue [pages/example.vue] + + + +```