소스 검색

fix: 去除多余输出

mtruning 3 년 전
부모
커밋
6f74838e1e
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/views/chart/ContentEdit/components/EditAlignLine/index.vue

+ 0 - 1
src/views/chart/ContentEdit/components/EditAlignLine/index.vue

@@ -65,7 +65,6 @@ const isComputedLine = computed(() => {
 
 // * 吸附判定
 const isSorption = (selectValue: number, componentValue: number) => {
-  console.log(minDistance.value);
   const isSorption = Math.abs(selectValue - componentValue) <= minDistance.value
   return isSorption
 }