fix: 未添加ts类型导致build错误

v3.2
shaohuzhang1 2024-02-23 11:58:26 +08:00
parent bf7e3911d8
commit 850518bec5
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ const allChecked: any = ref({
const filterText = ref('')
const filterData = computed(() => props.data.filter((v) => v.name.includes(filterText.value)))
const filterData = computed(() => props.data.filter((v: any) => v.name.includes(filterText.value)))
watch(
() => props.data,