What is ?

后端 未结 1 821
逝去的感伤
逝去的感伤 2020-11-30 10:08

I\'m completely new to Vue.js and I think I have a bit of understanding of how a router works with things like:


相关标签:
1条回答
  • 2020-11-30 10:25

    See Special Attributes - key

    It can also be used to force replacement of an element/component instead of reusing it. This can be useful when you want to:

    • Properly trigger lifecycle hooks of a component
    • Trigger transitions

    $route.fullPath is defined as

    The full resolved URL including query and hash.

    If you bind key to $route.fullPath, it will always "force a replacement" of the <router-view> element / component every time a navigation event occurs.

    As mentioned above, this is most probably done in order to trigger a transition / animation.

    0 讨论(0)
提交回复
热议问题