Skip to content

Commit c71433f

Browse files
Update teleport.md (#3122)
1. Removed the implication that teleport is focussed on displaying the element _outside the Vue application_. The real focus is on displaying outside the original component. 2. Improved grammar generally and reduced unnecessary words.
1 parent c1af459 commit c71433f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/guide/built-ins/teleport.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
## Basic Usage {#basic-usage}
88

9-
Sometimes we may run into the following scenario: a part of a component's template belongs to it logically, but from a visual standpoint, it should be displayed somewhere else in the DOM, outside of the Vue application.
9+
Sometimes a part of a component's template belongs to it logically, but from a visual standpoint, it should be displayed somewhere else in the DOM, perhaps even outside of the Vue application.
1010

11-
The most common example of this is when building a full-screen modal. Ideally, we want the modal's button and the modal itself to live within the same component, since they are both related to the open / close state of the modal. But that means the modal will be rendered alongside the button, deeply nested in the application's DOM hierarchy. This can create some tricky issues when positioning the modal via CSS.
11+
The most common example of this is when building a full-screen modal. Ideally, we want the code for the modal's button and the modal itself to be written within the same single-file component, since they are both related to the open / close state of the modal. But that means the modal will be rendered alongside the button, deeply nested in the application's DOM hierarchy. This can create some tricky issues when positioning the modal via CSS.
1212

1313
Consider the following HTML structure.
1414

@@ -169,11 +169,11 @@ In some cases, we may want to conditionally disable `<Teleport>`. For example, w
169169
</Teleport>
170170
```
171171

172-
Where the `isMobile` state can be dynamically updated by detecting media query changes.
172+
We could then dynamically update `isMobile`.
173173

174174
## Multiple Teleports on the Same Target {#multiple-teleports-on-the-same-target}
175175

176-
A common use case would be a reusable `<Modal>` component, with the potential for multiple instances to be active at the same time. For this kind of scenario, multiple `<Teleport>` components can mount their content to the same target element. The order will be a simple append - later mounts will be located after earlier ones within the target element.
176+
A common use case would be a reusable `<Modal>` component, with the potential for multiple instances to be active at the same time. For this kind of scenario, multiple `<Teleport>` components can mount their content to the same target element. The order will be a simple append, with later mounts located after earlier ones, but all within the target element.
177177

178178
Given the following usage:
179179

0 commit comments

Comments
 (0)