温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Vue生命周期钩子函数

发布时间:2020-07-05 18:11:16 来源:网络 阅读:966 作者:sky星辰01 栏目:web开发

<!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 type="text/javascript" src="https://cdn.jsdelivr.net/vue/2.1.3/vue.js"></script>
</head>
<style>
</style>

<body>
<div id="app">
<p>{{message}}</p>
数字:
</div>
<script>
var app = new Vue({
el: "#app",
data: {
message: "中国"
},

  beforeCreate: function () {
    console.group('beforeCreate 创建前状态==============')
    console.log("%c%s", "color:red", "el :" + this.$el);
    console.log("%c%s", "color:red", "data :" + this.$data);
    console.log("%c%s", "color:red", "message :" + this.message)
  },
  created: function () {
    console.group('created 创建后状态==============')
    console.log("%c%s", "color:red", "el :" + this.$el);
    console.log(this.$el)
    console.log("%c%s", "color:red", "data :" + this.$data);
    console.log(this.$data)
    console.log("%c%s", "color:red", "message :" + this.message)
  },
  beforeMount: function () {
    console.group('beforeMount 挂载前状态==============')
    console.log("%c%s", "color:red", "el :" + this.$el);
    console.log(this.$el)
    console.log("%c%s", "color:red", "data :" + this.$data);
    console.log(this.$data)
    console.log("%c%s", "color:red", "message :" + this.message)
  },
  mounted: function () {
    console.group('mounted 挂载后状态==============')
    console.log("%c%s", "color:red", "el :" + this.$el);
    console.log(this.$el)
    console.log("%c%s", "color:red", "data :" + this.$data);
    console.log(this.$data)
    console.log("%c%s", "color:red", "message :" + this.message)
  },
  beforeUpdate: function () {
    console.group('beforeUpdate 更新前状态==============')
    console.log("%c%s", "color:red", "el :" + this.$el);
    console.log(this.$el)
    console.log("%c%s", "color:red", "data :" + this.$data);
    console.log(this.$data)
    console.log("%c%s", "color:red", "message :" + this.message)
  },
  updated: function () {
    console.group('updated 更新后状态==============')
    console.log("%c%s", "color:red", "el :" + this.$el);
    console.log(this.$el)
    console.log("%c%s", "color:red", "data :" + this.$data);
    console.log(this.$data)
    console.log("%c%s", "color:red", "message :" + this.message)
  },
  beforeDestroy: function () {
    console.group('beforeDestroy 销毁前状态==============')
    console.log("%c%s", "color:red", "el :" + this.$el);
    console.log(this.$el)
    console.log("%c%s", "color:red", "data :" + this.$data);
    console.log(this.$data)
    console.log("%c%s", "color:red", "message :" + this.message)
  },
  destroyed: function () {
    console.group('destroyed 销毁后状态==============')
    console.log("%c%s", "color:red", "el :" + this.$el);
    console.log(this.$el)
    console.log("%c%s", "color:red", "data :" + this.$data);
    console.log(this.$data)
    console.log("%c%s", "color:red", "message :" + this.message)
  }
})

</script>
</body>

</html>

1.程序运行,控制台看输出:
Vue生命周期钩子函数

2.控制台输入 app.message = 'test'

Vue生命周期钩子函数
3.控制台输入 app.$destroy()
Vue生命周期钩子函数

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI