Selaa lähdekoodia

print console

epans 10 kuukautta sitten
vanhempi
commit
9c69590499
1 muutettua tiedostoa jossa 8 lisäystä ja 8 poistoa
  1. 8 8
      src/App.vue

+ 8 - 8
src/App.vue

@@ -11,14 +11,14 @@ export default {
 }
 
 // 控制是否屏蔽全局console.log 日志;isDebug设为false即可屏蔽
-const isDebug = false;  
-console.log = (function (oldLogFunc) {
-  return function () {
-    if (isDebug) {
-      oldLogFunc.apply(this, arguments);
-    }
-  }
-})(console.log);
+// const isDebug = false;  
+// console.log = (function (oldLogFunc) {
+//   return function () {
+//     if (isDebug) {
+//       oldLogFunc.apply(this, arguments);
+//     }
+//   }
+// })(console.log);
  
 </script>