]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
docs: meta transitionName typo (#731)
authorIstván Donkó <istvan.donko@gmail.com>
Sat, 23 Jan 2021 12:58:22 +0000 (13:58 +0100)
committerGitHub <noreply@github.com>
Sat, 23 Jan 2021 12:58:22 +0000 (13:58 +0100)
docs/guide/advanced/transitions.md

index 334d9b912e065de09b007be05372c3b55311c9a1..319dc46eed5f7e67ddf1e8b1ec97fdff8de5d09d 100644 (file)
@@ -47,7 +47,7 @@ It is also possible to determine the transition to use dynamically based on the
 ```html
 <!-- use a dynamic transition name -->
 <router-view v-slot="{ Component, route }">
-  <transition :name="route.meta.transition">
+  <transition :name="route.meta.transitionName">
     <component :is="Component" />
   </transition>
 </router-view>