Files
vue3-element-admin/types/index.d.ts
haoxr baae5ca613 fix: 角色右上角关闭未清空数据问题修复(Closes #I6483U)
Former-commit-id: 545a34deddb7b632ca5a87efc036f7d19aef5b01
2022-12-03 10:57:10 +08:00

12 lines
183 B
TypeScript

declare type DialogType = {
title?: string;
visible: boolean;
};
declare type OptionType = {
value: string;
label: string;
checked?: boolean;
children?: OptionType[];
};