beforeCreate() {
//创建前状态
},
created() {//可瑞克
// 创建完毕状态
this.arr.sort(function (a, b) {
return b.yu - a.yu;
});
},
beforeMount() {
//挂载前状态
},
mounted() {//忙忒的
//挂载结束状态
this.$refs.tr[2].style = "background: rgba(220,20,60,0.3);";
},
beforeUpdate() {
//更新前状态
},
updated() {//啊不得特
//更新完成状态
},
beforeDestroy() {
//销毁前
},
destroyed() {//第四瑞
//销毁完
},