mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: Fix type errors
This commit is contained in:
parent
8220f52ace
commit
376e25d796
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue