About.vue 390 B

1234567891011121314151617
  1. <template>
  2. <h2>我是About的内容</h2>
  3. </template>
  4. <script>
  5. export default {
  6. name:'About',
  7. // beforeDestroy(){
  8. // console.log('About组件即将被销毁了')
  9. // },
  10. mounted(){
  11. console.log('About组件挂载完毕了',this)
  12. window.aboutRoute = this.$route
  13. window.aboutRouter = this.$router
  14. }
  15. }
  16. </script>