Merge branch 'main' into refactor/router-redirect

This commit is contained in:
Evan
2026-06-30 14:26:23 +08:00
committed by GitHub
12 changed files with 34 additions and 12 deletions

View File

@@ -3,7 +3,7 @@ import { Input, Select } from 'antdv-next';
const emit = defineEmits(['blur', 'change']);
const modelValue = defineModel<[string, string]>({
const modelValue = defineModel<[string | undefined, string | undefined]>({
default: () => [undefined, undefined],
});