wujingjing
2024-08-29 19b778d2d04bed31ce2e1f167c6ff2fda9906421
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;