wujingjing
2024-12-12 b5c3eb5e9cc9129b9875f2ef8680092e1da4bab7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { YWDialogEmits, YWDialogProps } from '/@/components/dialog/yw-dialog';
import { YWFormProps } from '/@/components/form/yw-form';
import type { ExtractPropTypes } from 'vue';
 
export const formDialogProps = {
    ...YWDialogProps,
    ...YWFormProps,
    inline: {
        type: Boolean,
        default: true,
    },
};
 
export type FormDialogProps = ExtractPropTypes<typeof formDialogProps>;
 
export const formDialogEmits = {
    ...YWDialogEmits,
};
 
export type FormDialogEmits = typeof formDialogEmits;