diff --git a/kinit-admin/src/views/vadmin/auth/menu/components/Write.vue b/kinit-admin/src/views/vadmin/auth/menu/components/Write.vue index 73ae2c6..2a5db09 100644 --- a/kinit-admin/src/views/vadmin/auth/menu/components/Write.vue +++ b/kinit-admin/src/views/vadmin/auth/menu/components/Write.vue @@ -2,7 +2,6 @@ import { Form } from '@/components/Form' import { useForm } from '@/hooks/web/useForm' import { PropType, reactive, watch } from 'vue' -import { TableData } from '@/api/table/types' import { useValidator } from '@/hooks/web/useValidator' import { getMenuTreeOptionsApi } from '@/api/vadmin/auth/menu' import { ElButton, ElInput } from 'element-plus' @@ -12,7 +11,7 @@ const { required } = useValidator() const props = defineProps({ currentRow: { - type: Object as PropType>, + type: Object as PropType>, default: () => null } })