06 Vue lifecycle hook

Lifecycle hook

  • Represents a vue example of this process from creation to destruction, the node will be some time this process gives the corresponding hook function
  • Hook function: characteristic condition is satisfied callback method
new Vue({
    el: "#app",
    data: {
        msg: "message"
    },
    beforeCreate () {
        console.log("实例刚刚创建");
        console.log(this.msg
                    
    },
    created () {
        console.log("实例创建成功, data, methods已拥有");
        console.log(this.msg);
    },
    mounted () {
        console.log("页面已被vue实例渲染, data, methods已更新");
    }
    // 拿到需求 => 确定钩子函数 => 解决需求的逻辑代码块
})

Guess you like

Origin www.cnblogs.com/Du704/p/11863284.html