7 lines
172 B
TypeScript
7 lines
172 B
TypeScript
export interface SettingPage {
|
|
id: string;
|
|
label: string | Ref<string> | ComputedRef<string>;
|
|
icon: string;
|
|
component: Component;
|
|
sidebar?: Component;
|
|
} |