chore: 移除多余日志输出

This commit is contained in:
ZiuChen 2022-08-15 18:15:35 +08:00
parent 3fab5bfbd3
commit 64b1e8722b

View File

@ -108,10 +108,7 @@ onMounted(() => {
}, 500)
//
watch(filterText, (val) => {
console.log(val)
updateShowList(activeTab.value)
})
watch(filterText, (val) => updateShowList(activeTab.value))
//
document.addEventListener('scroll', (e) => {
@ -148,7 +145,6 @@ onMounted(() => {
} else if (isSearch) {
document.querySelector('input').focus()
} else if (isExit) {
console.log('isExit')
filterText.value = ''
}
})