From 823fa729a255a9735c31eae62b486528eda6fb95 Mon Sep 17 00:00:00 2001 From: zxwk Date: Sun, 12 May 2024 11:06:25 +0800 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor:=20=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layouts/index.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/layouts/index.vue b/src/layouts/index.vue index 15178d3..97e1a68 100644 --- a/src/layouts/index.vue +++ b/src/layouts/index.vue @@ -54,8 +54,8 @@ return { oldLayout: '', controller: new window.AbortController(), - timeOutID: null - }; + timeOutID: null, + } }, computed: { ...mapGetters({ @@ -76,8 +76,8 @@ }, beforeDestroy() { window.removeEventListener('resize', this.handleResize) - this.controller.abort(); - clearTimeout(this.timeOutID); + this.controller.abort() + clearTimeout(this.timeOutID) }, mounted() { this.oldLayout = this.layout @@ -111,7 +111,7 @@ }, { capture: false, - signal: this.controller?.signal + signal: this.controller?.signal, } ) })