소스 검색

no message

xiaoxin 3 년 전
부모
커밋
544a90b527
2개의 변경된 파일20851개의 추가작업 그리고 26개의 파일을 삭제
  1. 20847 22
      package-lock.json
  2. 4 4
      src/App.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 20847 - 22
package-lock.json


+ 4 - 4
src/App.vue

@@ -14,7 +14,7 @@ export default {
     async getIp() {
       let res = await this.$axios({
         url: "http://ip-api.com/json",
-        method: "get",
+        method: "get"
       });
       // console.log(res);
       if (res.status == 200) {
@@ -27,7 +27,7 @@ export default {
           "171.34.215.31",
           "182.105.82.9",
           "220.175.60.46",
-          "39.160.30.198",
+          "39.160.30.198"
         ];
         let isip = ipList.includes(IP);
         let isip2 = IP.indexOf("218.64.4") > -1;
@@ -59,8 +59,8 @@ export default {
         window.open("", "_self");
         window.close();
       }
-    },
-  },
+    }
+  }
 };
 </script>