แก้ไข ขอบ บน popup เพิ่ม q-tree popup (ไม่สมบูณ)

This commit is contained in:
setthawutttty 2023-06-14 16:54:34 +07:00
parent b5069d1991
commit 79fec79b76
3 changed files with 1137 additions and 138 deletions

View file

@ -1,7 +1,12 @@
interface DataOption {
id: number;
id: string;
name: string;
}
disable?: boolean;
}
export type { DataOption };
interface treeTab {
id: string;
label: string;
children: treeTab[];
}
export type { DataOption,treeTab };