Vue 生命周期

Posted guangzhou11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 生命周期相关的知识,希望对你有一定的参考价值。

技术图片

 

 

 

##vue生命周期
 beforeCreate :底层做一些链
 created:响应数据变化 dom 还没有挂载
 beforeMount: 基本用不到 检测有没有template 属性
                        如果有template  渲染为render 函数

render :

  

>  render(createElement) {
           //虚拟dom  是一个对象
           return  createElement(div,{
               attrs:{
                  id:1
               },
               on:{
                  click() {
                       alert(1)
                  }
               }
           },hello);   //1111
           console.log(render)
       },

![Alt text](./1568722348831.png)

render  与template  只写一个
mounted :可以获取真实的元素  `this.$el`
beforeUpdate:在更新前做修改
updated:不能再修改数据了 
beforeDestroy:用来清除定时器 移除绑定的方法
destroyed:绑定数据 属性 清空

 操作dom  用` this.$nextTick()`

 

以上是关于Vue 生命周期的主要内容,如果未能解决你的问题,请参考以下文章

Android片段生命周期:onResume调用了两次

在不存在的片段上调用片段生命周期和 onCreate 的问题

导航上的片段生命周期重叠

Android 片段生命周期

关于片段生命周期,何时调用片段的 onActivityResult?

理解片段事务期间片段的生命周期方法调用