wujingjing
2024-11-27 a32fc7bdf0ae1fccecfee1228e7348b8f2c478a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { buildProps } from 'element-plus/es/utils';
import { YWDialogEmits, YWDialogProps } from '/@/components/dialog/yw-dialog';
import { YWFormProps } from '/@/components/form/yw-form';
import { 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;