--- title: '' description: The component teleports a component to a different location in the DOM. --- ::warning The `to` target of [``](https://vuejs.org/guide/built-ins/teleport.html) expects a CSS selector string or an actual DOM node. Nuxt currently has SSR support for teleports to `body` only, with client-side support for other targets using a `` wrapper. :: ## Body Teleport ```vue ``` ## Client-side Teleport ```vue ``` :link-example{to="/docs/examples/advanced/teleport"}