tdesign-vue-next-starter/src/interface.ts

12 lines
169 B
TypeScript
Raw Normal View History

2021-11-16 19:01:03 +08:00
export interface ResDataType {
code: number,
data: any
}
2021-11-17 19:47:34 +08:00
export interface MenuRoute {
path: string;
title?: string;
icon?: string;
children: MenuRoute[];
}