美文网首页Vue.jsWeb前端之路
vue父子组件 渲染过程,超详细

vue父子组件 渲染过程,超详细

作者: 一只大橘 | 来源:发表于2019-08-20 09:26 被阅读4次
这里vue的子组件引入有两中方式:同步和异步,因此父子组件加载的顺序
是不一样的,接着往下看,会有收获的。
一、 同步引入

例子: import Page from '@/components/page'

二、异步引入

例子:const Page = () => import('@/components/page')
或者: const Page = resolve => require(['@/components/page'], page)

image.png
同步引入时生命周期顺序为:父组件的beforeCreate、created、beforeMount --> 所有子组件的beforeCreate、created、beforeMount --> 所有子组件的mounted --> 父组件的mounted

例子:

  <! -- App.vue -->
<template>
  <div id="app">
    <New />  <!-- 子组件一 -->
    <Page /> <!-- 子组件二 -->
    <router-view/>
  </div>
</template>
<script>
import Page from '@/components/page' // 同步方式引入
import New from '@/components/new'
export default {
  name: 'App',
  components: {
    Page,
    New
  },
  beforeCreate () {
    console.log('父组件App -------> App beforeCreate')
  },
  created () {
    console.log('父组件App -------> App created')
  },
  mounted () {
    console.log('父组件App -------> App mounted')
  },
  beforeMount () {
    console.log('父组件App -------> App beforeMount')
  }
}
</script>
</script>

<!-- new.vue -->
<template>
    <div>
        <p>this is a new component</p>
    </div>
</template>

<script>
export default {
    name: 'new',
  created () {
    console.log('子组件new ----> new created')
  },
  beforeCreate () {
    console.log('子组件new ----> new beforeCreate')
  },
  mounted () {
    console.log('子组件new ----> new mounted')
  },
  beforeMount () {
    console.log('子组件new ----> new beforeMount')
  }
}
</script>
<!-- page.vue-->
<template>
    <div>
        <Job />
        <p>this is a page component</p>
    </div>
</template>

<script>
import Job from '@/components/job'
export default {
    name: 'page',
    components: {
        Job,
    },
    beforeCreate () {
        console.log('子组件page ----> page beforeCreate')
    },
    created () {
        console.log('子组件page ----> page created')
    },
    mounted () {
        console.log('子组件page ----> page mounted')
    },
    beforeMount () {
        console.log('子组件page ----> page beforeMount')
    }
}
</script>
<!-- job.vue -->
<template>
    <div>
        <p>this is a job component, in page.vue</p>
    </div>
</template>

<script>
export default {
    name: 'job',
  created () {
    console.log('孙组件job ------> job created')
  },
  beforeCreate () {
    console.log('孙组件job ------> job beforeCreate')
  },
  mounted () {
    console.log('孙组件job ------> job mounted')
  },
  beforeMount () {
    console.log('孙组件job ------> job beforeMount')
  }
}
</script>
image.png
异步引入时生命周期顺序:父组件的beforeCreate、created、beforeMount、mounted --> 子组件的beforeCreate、created、beforeMount、mounted

在上面的代码只需要修改引入的方式:

import Page from '@/components/page' // 同步方式引入
import New from '@/components/new'
import Job from '@/components/job'

改为:

const Page = () => import ('@/components/page')  // 异步引入
const New = () => import ('@components/new')
const Job = () => import ('@/components/job'
image.png

最后:为了加深映像,自己最好把例子跑一遍,喜欢就帮在下点点赞!!

相关文章

  • vue父子组件 渲染过程,超详细

    这里vue的子组件引入有两中方式:同步和异步,因此父子组件加载的顺序 是不一样的,接着往下看,会有收获的。 一、 ...

  • vue 面试题2020-05-07

    vue父子组件生命周期调用顺序加载渲染过程 和先序深度遍历顺序有关父beforeCreate-->父create...

  • vue父子渲染过程

    加载渲染过程 父beforeCreate->父created->父beforeMount->子beforeCrea...

  • 1.基础相关

    父子组件加载顺序 1.加载渲染过程父组件beforeCreated ->父组件created ->父组件befor...

  • vue父子组件的生命周期

    vue中父子组件渲染,子组件更新,至父组件销毁的生命周期钩子函数触发顺序:beforecreate(父)=> cr...

  • vue页面的渲染过程

    Vue的渲染过程 我们从最简单的new Vue开始: Vue在渲染的时候先调用原型上的_render函数将组件对象...

  • mpVue记录3——父子组件传值/插槽

    vue父子组件传值过程:子组件:props接收,data里同步数据父组件:在子组件通过$emit()发送,父组件定...

  • (VUE3) 四、组件传值(父子组件传值 & 祖孙组件传值 &v

    1.父子组件传值 vue2中的父子组件传值:父组件: 子组件: vue3中的父子组件传值: 还是用props接收父...

  • Vue相关知识点

    1、vue父子组件之间的通信 在vue组件通信中其中最常见通信方式就是父子组件之中的通性,而父子组件的设定方式在不...

  • 插槽v-slot

    父子组件插槽的使用 父组件product.vue 子组件 ProductParam.vue

网友评论

    本文标题:vue父子组件 渲染过程,超详细

    本文链接:https://www.haomeiwen.com/subject/ahsnjctx.html