소스 검색

clear typescript warning

tripeur 4 년 전
부모
커밋
9cb26596a7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/Login.vue

+ 1 - 1
src/views/Login.vue

@@ -78,7 +78,7 @@ export default defineComponent({
   },
   mounted() {
     const param = new URLSearchParams(window.location.search);
-    const nextPath = param.get("next") ?? "/";
+    // const nextPath = param.get("next") ?? "/";
     this.error = param.get("error") == "true" ?? false;
   },
 });