vue3-element-admin/types/index.d.ts

12 lines
182 B
TypeScript

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