type FilterComponentsItem = 'Select' | 'Input' | 'DatePicker'; type AntProps = InstanceType['$props']; type Props = { FilterComponentsItemType: T; } & AntProps; const { FilterComponentsItemType } = defineProps(); let a: InstanceType['$props'] = { status: 'error' }; let b: Props = { FilterComponentsItemType: 'Select', status: '' }; `vite`提示识别不了。  但是为什么`vue`文件没有问题?都有提示的。  这个要怎么改啊?