export interface AppItemProps { title: VueNode; desc?: VueNode; icon?: VueNode | (() => VueNode); url?: string; target?: string; children?: Array>; } export type AppListProps = AppItemProps[];