<template>
  <section class="app-main">
    <transition name="fade-transform" mode="out-in">
      <router-view :key="key" /> //key属性
    </transition>
  </section>
</template>

<script>
export default {
  name: 'AppMain',
  computed: {
    key() {
      return this.$route.fullPath
    }
  }
}
</script>

1. 不设置 router-view 的 key 属性

由于 Vue 会复用相同组件, 即 /page/1 => /page/2 或者 /page?id=1 => /page?id=2这类链接跳转时, 将不在执行created, mounted之类的钩子, 这时候你需要在路由组件中, 添加beforeRouteUpdate钩子来执行相关方法拉去数据
则相关钩子加载顺序为: beforeRouteUpdate

2. 设置 router-view 的 key 属性值为 $route.path

从/page/1 => /page/2, 由于这两个路由的$route.path并不一样, 所以组件被强制不复用
则相关钩子加载顺序为:beforeRouteUpdate => created => mounted
从/page?id=1 => /page?id=2, 由于这两个路由的 $route.path一样, 所以和没设置 key 属性一样,会复用组件,
则相关钩子加载顺序为: beforeRouteUpdate

3. 设置 router-view 的 key 属性值为 $route.fullPath

从/page/1 => /page/2, 由于这两个路由的 r o u t e . f u l l P a t h 并 不 一 样 , 所 以 组 件 被 强 制 不 复 用 则 相 关 钩 子 加 载 顺 序 为 : b e f o r e R o u t e U p d a t e = > c r e a t e d = > m o u n t e d 从 / p a g e ? i d = 1 = > / p a g e ? i d = 2 , 由 于 这 两 个 路 由 的 route.fullPath并不一样, 所以组件被强制不复用 则相关钩子加载顺序为: beforeRouteUpdate => created => mounted 从/page?id=1 => /page?id=2, 由于这两个路由的 route.fullPath,:beforeRouteUpdate=>created=>mounted/page?id=1=>/page?id=2,route.fullPath并不一样, 所以组件被强制不复用
则相关钩子加载顺序为: beforeRouteUpdate => created => mounted

Logo

前往低代码交流专区

更多推荐