unlocking(text) {
if (text === "取消") {
window.clearTimeout(this.time);
this.$router.push("home");
return;
}
this.time = window.setTimeout(() => {
this.percent++;
}, 30);
},
用this定義一個(gè)變量就行了,開始我用var和let都不行。具體情況自己試試吧