Forráskód Böngészése

style: 删掉多余的console.log

任一存 1 éve
szülő
commit
d7f390cf0e
2 módosított fájl, 0 hozzáadás és 3 törlés
  1. 0 2
      src/useFunctions/useSmoothSwipe.js
  2. 0 1
      src/views/BambooList.vue

+ 0 - 2
src/useFunctions/useSmoothSwipe.js

@@ -58,7 +58,6 @@ export default function useSmoothSwipe({
 
   //
   watch(moveSpeed, (v) => {
-    console.log(v)
     if (!haveSwipedThisTime.value && Math.abs(v) > 0.1) {
       haveSwipedThisTime.value = true
     }
@@ -94,7 +93,6 @@ export default function useSmoothSwipe({
   }
 
   function speedUp(v) {
-    console.log('sdf')
     moveSpeed.value += v
   }
 

+ 0 - 1
src/views/BambooList.vue

@@ -203,7 +203,6 @@ const layer1Left = ref(layer1InitialLeft)
 watch(
   translateLength,
   (v) => {
-    console.log(v)
     layer1Left.value = layer1InitialLeft - v
   },
   {