初始化版本

This commit is contained in:
2026-04-02 16:03:32 +08:00
commit 8f9b2c62ef
208 changed files with 12833 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/**
* 弹窗类型
*/
export interface Dialog {
title: string;
visible: boolean;
}
/**
* 通用组件选择项类型
*/
export interface Option {
value: number;
label: string;
checked?: boolean;
children?: Option[];
}