Vue-生命周期

生命周期函数特点
beforeCreated只有默认的生命周期函数和默认事件,其他都没有
createddata、methods、属性、watch\event回调事件,$el还没有
beforeMount模板在内存中已经编译好,但是还未渲染出来
mounted页面模板渲染好了
beforeUpdatedata改变触发beforeUpdate事件,Vue中的内容更新,但是未渲染到页面
updated事件执行的时候,页面和data都是最新
beforeDestory销毁前一步,实例可用
destoryed页面销毁,实例不可用 vm.$destory()
new Vue({
			el:'#app',
			data:{
				msg:'你好',
			},
			beforeCreate(){
				console.log('beforeCreate函数');
				console.log('el:'+this.$el);//undefined
				console.log('data:'+this.$data);//undefined
			},
			created(){
				console.log('created函数');
				console.log('el:'+this.$el);//undefined
				console.log('data:'+this.$data);//[object Object]
			},
			beforeMount(){
				console.log('beforeMount函数');
				console.log('el:'+this.$el);//[object HTMLCollection]
				console.log('data:'+this.$data);//[object Object]
			},
			mounted(){
				console.log('mounted函数');
				console.log('el:'+this.$el);[object HTMLCollection]
				console.log('data:'+this.$data);[object Object]
			},
			beforeUpdate(){
				console.log('befoeUpdated函数');
				console.log('el:'+this.$el);
				console.log('data:'+this.$data);
			},
			updated(){
				console.log('updated函数');
				console.log('el:'+this.$el);
				console.log('data:'+this.$data);
			},

在这里插入图片描述
参考:
VUE官方文档
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值