From bd65f8eae5fac09cfb44ee665f62de63b8c8b5d3 Mon Sep 17 00:00:00 2001 From: Joel Wenzel <50124194+joel-wenzel@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:01:39 -0500 Subject: [PATCH] fix (3.5): incorrect Teleport prop name --- posts/vue-3-5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/vue-3-5.md b/posts/vue-3-5.md index 9a28d3a..d4ea4ac 100644 --- a/posts/vue-3-5.md +++ b/posts/vue-3-5.md @@ -178,7 +178,7 @@ A known constraint of the built-in `` component is that its target ele In 3.5, we have introduced a `defer` prop for `` which mounts it after the current render cycle, so this will now work: ```html -... +...
```