Merge pull request #275 from Ten-K/fix/notice

fix(HeaderNotice.vue): change loadding to loading
This commit is contained in:
iczer
2021-11-23 11:10:49 +08:00
committed by GitHub

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)
}
}