fix: 去除多余输出

This commit is contained in:
mtruning 2022-03-05 22:12:53 +08:00
parent 76b22ce05c
commit 30361aa7ca

View File

@ -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
}