mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-28 23:32:48 +00:00
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