fix(HeaderNotice.vue): change loadding to loading

This commit is contained in:
iczer 2022-09-22 11:43:47 +08:00
parent a3704743df
commit 355c7853d1

View File

@ -56,9 +56,10 @@ export default {
this.loading = false
return
}
this.loadding = true
if (this.show) return
this.loading = true
setTimeout(() => {
this.loadding = false
this.loading = false
}, 1000)
}
}