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
commit 2d0c6c2a2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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