UNPKG

vuetify-strapi-dashboard

Version:

Nuxt ui kit layer for nuxt 3. a modern and beautiful marketplace ui

44 lines (43 loc) 1.31 kB
export global { export declare namespace VSD { interface VuetifyStrapiDashboardConfig { version?: string | number; i18n?: { missingWarn?: boolean; rtlDictionary?: {}; rtl?: boolean; lang?: string; } description?: string; keywords?: string; title?: string; singularTitle?: string; footerTitle?: string; systemLogo?: string; loader?: boolean; enable2fa?: boolean; splash?: boolean; recaptchaKey?: string; loginUrl?: string; showUser?: boolean; menu?: { navbar?: MenuItem[]; drawer?: MenuItem[]; panelDashboard?: MenuItem[]; footerLinks?: MenuItem[]; panelDrawer?: MenuItem[]; panelTopMenu?: MenuItem[]; } } interface MenuItem { title?: string; icon?: string; to?: string; role?: string; permission?: string; link?: string; target?: string; items?: MenuItem[] } } }