fix: 未添加ts类型导致build错误
This commit is contained in:
parent
bf7e3911d8
commit
850518bec5
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user