We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71ecfd5 commit 7d93d28Copy full SHA for 7d93d28
src/api/built-in-components.md
@@ -294,17 +294,17 @@ Renders its slot content to another part of the DOM.
294
Specifying target container:
295
296
```vue-html
297
- <teleport to="#some-id" />
298
- <teleport to=".some-class" />
299
- <teleport to="[data-teleport]" />
+ <Teleport to="#some-id" />
+ <Teleport to=".some-class" />
+ <Teleport to="[data-teleport]" />
300
```
301
302
Conditionally disabling:
303
304
305
- <teleport to="#popup" :disabled="displayVideoInline">
+ <Teleport to="#popup" :disabled="displayVideoInline">
306
<video src="./my-movie.mp4">
307
- </teleport>
+ </Teleport>
308
309
310
- **See also** [Guide - Teleport](/guide/built-ins/teleport)
0 commit comments