Explorar el Código

😎代码格式化

zuohuaijun hace 1 año
padre
commit
ede22fe985
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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];