fix: Fix table rendering errors

This commit is contained in:
wangdan-fit2cloud 2025-12-01 12:40:15 +08:00
parent 9e3b16c3ce
commit 769790a768

View File

@ -94,9 +94,8 @@ const appTableRef = ref()
const loading = ref(false)
const showInput = ref(false)
const inputValue = ref('')
const tableHeight = ref(300)
watch(showInput, (bool) => {
const tableHeight = ref(null)
watch(showInput, (bool: boolean) => {
if (!bool) {
inputValue.value = ''
}