gerson
2024-09-08 18aeed6ed17a3aeacc157e0019159957aeaec556
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;