fix(client): fix prop type in MkOmit

This commit is contained in:
tamaina 2023-04-04 01:45:01 +00:00
parent 38d0b62167
commit c25d89ef9c
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import { onMounted } from 'vue';
import { i18n } from '@/i18n';
const props = withDefaults(defineProps<{
maxHeight: number;
maxHeight?: number;
}>(), {
maxHeight: 200,
});