Ver Fonte

😎代码格式化

zuohuaijun há 2 anos atrás
pai
commit
ede22fe985
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      Web/src/stores/keepAliveNames.ts

+ 1 - 1
Web/src/stores/keepAliveNames.ts

@@ -24,7 +24,7 @@ export const useKeepALiveNames = defineStore('keepALiveNames', {
 			const index = this.cachedViews.indexOf(view.name);
 			setTimeout(() => {
 				index > -1 && this.cachedViews.splice(index, 1);
-			}, 20)
+			}, 20);
 		},
 		async delOthersCachedViews(view: any) {
 			if (view.meta.isKeepAlive) this.cachedViews = [view.name];