【前段】12 VUE 生命周期与狗子函数


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <div id ="app">
        <span id="num">{{num}}</span>
        <button @click="num++">赞!</button>
        <h2>{{name}} ,有{{num}}个人点赞</h2>
    </div>

    <script src="../node_modules/vue/dist/vue.js"></script>
    
    <script>
        let app =new Vue({
            el:"#app",
            data:{
                name:"haoxiansheng",
                num:23
            },
            methods: {
                show(){
                    return this.name;
                },
                add() {
                    return this.num++;
                }
            },
            beforeCreate() {
                console.log("======beforeCreate=======");
                console.log("数据未加载:" +this.name, this.num);
                console.log("方法未加载"+this.show());
                console.log("html模版方法未加载:"+ document.getElementById);
            },
            created() {
                console.log("======created=======");
                console.log("数据yi加载:" +this.name, this.num);
                console.log("方法yi加载"+this.show());
                console.log("html模版方法未渲染:"+ document.getElementById("num"));
                console.log("html模版方法未渲染:"+ document.getElementById("num").innerText);
            },
            beforeMount() {
                console.log("=====beforeMount===");
                console.log("html模版方法未渲染:"+ document.getElementById("num").innerText);
            },
            mounted() {
                console.log("=====mounted===");
                console.log("html模版方法已渲染:"+ document.getElementById("num").innerText);
            },
            beforeUpdate() {
                console.log("=====beforeUpdate===");
                console.log("数据模型已经更新"+this.num)
                console.log("html模版未更新:"+ document.getElementById("num").innerText);
            },
            updated() {
                console.log("=====beforeUpdate===");
                console.log("数据模型已经更新"+this.num)
                console.log("html模版更新:"+ document.getElementById("num").innerText);
            },

        })
    </script>
</body>
</html>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值