vue-router中vue生命周期的顺序问题

新手上路,请多包涵

这是Vue的生命周期示例图
lifecycle.png

我在路由中分别定义A页面和B页面

A页面:

<template>
  <div>
    <router-link to="/test2">去B页面</router-link>
  </div>
</template>

<script>
  export default {
    beforeCreate(){
      console.log('A页面 beforeCreate');
    },
    created(){
      console.log('A页面 created');
    },
    mounted(){
      console.log('A页面 mounted');
    },
    beforeDestroy(){
      console.log('A页面 beforeDestroy');
    },
    destroyed(){
      console.log('A页面 destroyed');
    }
  }
</script>

B页面

<template>
  <div>
    <router-link to="/test1">去A页面</router-link>
  </div>
</template>

<script>
  export default {
    beforeCreate(){
      console.log('B页面 beforeCreate');
    },
    created(){
      console.log('B页面 created');
    },
    mounted(){
      console.log('B页面 mounted');
    },
    beforeDestroy(){
      console.log('B页面 beforeDestroy');
    },
    destroyed(){
      console.log('B页面 destroyed');
    }
  }
</script>

求解,为何会出现这样的打印顺序?
是Vue本身的原因还是Vue-router的加载原因?
图片描述

阅读 10.2k
1 个回答

没毛病啊。vue-router切换时会在新组件渲染好未挂载前B-beforeMounted,旧组件销毁A-destroyed,然后挂载新组件B-mounted

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题