设为首页收藏本站 |天气与日历| 2025-07-02 星期三 02:01:00 乙巳(蛇)年 六月初八 丑时
     
切换到窄版

私人站点

 找回密码
 立即注册
搜索
查看: 125|回复: 0

生命周期以及钩子示意图

[复制链接]

954

主题

954

帖子

3879

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3879
发表于 2022-6-3 12:16:47 | 显示全部楼层 |阅读模式
无标题.bmp
[C++] 纯文本查看 复制代码
<!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>
    <script src="./vue-v2.6.10.js"></script>
</head>
<body>
    <div id="app">
        {{msg}}
    </div>
</body>
<script>

    var app = new Vue({
        el:'#app',
        data:{
            msg:"123"
        },
        beforeMount:function(){
            console.log('渲染虚拟DOM之前')
        },
        beforeCreate:function(){
            console.log('事件绑定完了')
        },

        updated:function(){
            console.log('修改数据后虚拟dom重新更新之后')
        }
    })

</script>
</html>





回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|编程站点 ( 冀ICP备2023028127号-2 )|友链申请|

GMT+8, 2025-7-2 02:01 , Processed in 0.094705 second(s), 25 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表