lsc 1 년 전
부모
커밋
29843c54c9
5개의 변경된 파일16개의 추가작업 그리고 13개의 파일을 삭제
  1. 0 0
      dist/index.html
  2. 1 1
      dist/report.html
  3. 0 0
      dist/static/js/app.9718619d.js
  4. 0 0
      dist/static/js/app.cf9998dc.js
  5. 15 12
      src/App.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 1 - 1
dist/report.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.9718619d.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.cf9998dc.js


+ 15 - 12
src/App.vue

@@ -42,18 +42,21 @@ export default {
       }
     },
     toggleVc() {
-      const nowTime = new Date().getTime()
-      if (nowTime - this.lastClickTime < 3000) {
-        this.count++
-      } else {
-        this.count = 0
-      }
-      this.lastClickTime = nowTime
-      if (this.count >= this.limit) {
-        const vconDom = document.getElementById('__vconsole')
-        this.toggleClass(vconDom, 'show')
-        this.count = 0
-      }
+      // const nowTime = new Date().getTime()
+      // if (nowTime - this.lastClickTime < 3000) {
+      //   this.count++
+      // } else {
+      //   this.count = 0
+      // }
+      // this.lastClickTime = nowTime
+      // if (this.count >= this.limit) {
+      //   const vconDom = document.getElementById('__vconsole')
+      //   this.toggleClass(vconDom, 'show')
+      //   this.count = 0
+      // }
+
+      const vconDom = document.getElementById('__vconsole')
+      this.toggleClass(vconDom, 'show')
     }
   }
 }

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.