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