fix: Fix type errors

This commit is contained in:
wangdan-fit2cloud 2025-09-18 11:40:09 +08:00
parent 8220f52ace
commit 376e25d796

View File

@ -851,12 +851,9 @@ import { getImgUrl } from '@/utils/common'
import { arraySort } from '@/utils/array'
import { t } from '@/locales'
const props = defineProps({
data: {
type: Object,
default: () => {},
},
})
const props = defineProps<{
data: any
}>()
const currentLoopNode = ref(0)
</script>
<style lang="scss" scoped></style>