This commit is contained in:
rou
2026-03-26 21:45:32 +08:00
parent 7c0cbe1320
commit 2a65ba8c6a
7 changed files with 169 additions and 59 deletions

View File

@@ -12,19 +12,37 @@ new Vue({
// 1. 模拟异步请求
// 2. 1 秒后给 courses 赋值
// 3. loading 改成 false
console.log("1");
const thiz = this
setTimeout(function () {
thiz.courses = [
{ id: 1, title: 'HTML' },
{ id: 2, title: 'CSS' },
{ id: 3, title: 'JS' }
]
thiz.loading = false
}, 1000)
},
updated() {
// 任务:在控制台输出 updated 日志
console.log("更新");
},
beforeDestroy() {
// 任务:在控制台输出 beforeDestroy 日志
console.log("已销毁");
},
destroyed() {
// 任务:在控制台输出 destroyed 日志
console.log("销毁完成");
},
methods: {
destroyInstance() {
// 任务:调用 this.$destroy()
this.$destroy()
},
},
});