The following process will be used to install admin dashboard using package manager.
npm install
.npm run dev
. npm run build
to build for production.npm run generate
to generate static site for production.In case if you have any problems or query then please contact us
The arrangement below describes our file structure.
This section will give you a brief description of our code.
1. Header Section : This is the default navbar section. It contains :
Note:- These categories are defined by us and you can modify as per your needs :)
<!-- Navbar Component --> <Header></Header> ========================================================== <!-- BEGIN NAVBAR --> <header :class="{ dark: store.semidark && store.menu === 'horizontal' }"> <div class="shadow-sm"> <div class="relative flex w-full items-center bg-white px-5 py-2.5 dark:bg-[#0e1726]"> .............................. </div> <!-- horizontal menu --> <ul class="horizontal-menu hidden border-t border-[#ebedf2] bg-white py-1.5 px-6 font-semibold text-black rtl:space-x-reverse dark:border-[#191e3a] dark:bg-[#0e1726] dark:text-white-dark lg:space-x-1.5 xl:space-x-8" > .............................. </ul> </div> </header> <!-- END NAVBAR -->
2. Main Container Section : The main container section includes header, footer and main content section.
<!-- BEGIN MAIN CONTAINER --> <div class="main-section antialiased relative font-nunito text-sm font-normal" :class="[store.sidebar ? 'toggle-sidebar' : '', store.menu, store.layout, store.rtlClass]" > .............................. </div> <!-- END MAIN CONTAINER -->
3. Sidebar : This is the sidebar code.
<!-- Sidebar Component --> <Sidebar></Sidebar> ========================================================== <!-- BEGIN SIDEBAR --> <div :class="{ 'dark text-white-dark': store.semidark }"> <nav class="sidebar fixed top-0 bottom-0 z-50 h-full min-h-screen w-[260px] shadow-[5px_0_25px_0_rgba(94,92,154,0.1)] transition-all duration-300"> .............................. </nav> </div> <!-- END SIDEBAR -->
4. Main Content : This is the Main Content code section.
This is the root structure where you can create widgets, charts, tables etc.
<!-- BEGIN CONTENT PART --> <div class="main-content"> .............................. </div> <!-- END CONTENT PART -->
5. Footer : This is the Footer code.
<!-- Footer Component --> <Footer></Footer> ========================================================== <!-- BEGIN FOOTER --> <p class="pt-6 text-center dark:text-white-dark ltr:sm:text-left rtl:sm:text-right"> .............................. </p> <!-- END FOOTER -->
Now, after a brief description of our admin template. Below is the combined code of the snippets we have discuss above.
<!-- BEGIN MAIN CONTAINER --> <div class="main-section antialiased relative font-nunito text-sm font-normal" :class="[store.sidebar ? 'toggle-sidebar' : '', store.menu, store.layout, store.rtlClass]"> <!-- BEGIN SIDEBAR MENU OVERLAY --> <div class="fixed inset-0 bg-[black]/60 z-50 lg:hidden" :class="{ hidden: !store.sidebar }" @click="store.toggleSidebar()"></div> <!-- END SIDEBAR MENU OVERLAY --> <!-- BEGIN SCREEN LOADER --> <div v-show="store.isShowMainLoader" class="screen_loader fixed inset-0 bg-[#fafafa] dark:bg-[#060818] z-[60] grid place-content-center animate__animated"> <svg>...</svg> </div> <!-- END SCREEN LOADER --> <!-- BEGIN SCROLL TO TOP BUTTON --> <div class="fixed bottom-6 ltr:right-6 rtl:left-6 z-50"> <template v-if="showTopButton"> <button type="button" class="btn btn-outline-primary animate-pulse rounded-full bg-[#fafafa] p-2 dark:bg-[#060818] dark:hover:bg-primary" @click="goToTop"> <svg>...</svg> </button> </template> </div> <!-- END SCROLL TO TOP BUTTON --> <!-- BEGIN APP SETTING LAUNCHER --> <Setting /> <!-- END APP SETTING LAUNCHER --> <div class="main-container text-black dark:text-white-dark min-h-screen" :class="[store.navbar]"> <!-- BEGIN SIDEBAR --> <Sidebar /> <!-- END SIDEBAR --> <!-- BEGIN CONTENT AREA --> <div class="main-content"> <!-- BEGIN NAVBAR --> <Header></Header> <!-- END NAVBAR --> <div class="p-6 animation"> <!-- BEGIN PAGE CONTENT --> <NuxtPage /> <!-- END PAGE CONTENT --> <!-- BEGIN FOOTER --> <Footer></Footer> <!-- END FOOTER --> </div> </div> <!-- END CONTENT AREA --> </div> </div> <!-- END MAIN CONTAINER -->
This section will give you a brief description of our admin template JS code.
1. app-setting.js : This is primary js file. It is necessary for the layout to work. It contains the code as follows :-
import { $themeConfig } from '../theme.config'; import { useAppStore } from '@/stores/index'; export default { init() { const store = useAppStore(); // set default styles let val: any = localStorage.getItem('theme'); // light, dark, system val = val || $themeConfig.theme; store.toggleTheme(val); val = localStorage.getItem('menu'); // vertical, collapsible-vertical, horizontal val = val || $themeConfig.menu; store.toggleMenu(val); val = localStorage.getItem('layout'); // full, boxed-layout val = val || $themeConfig.layout; store.toggleLayout(val); val = localStorage.getItem('i18n_locale'); // en, da, de, el, es, fr, hu, it, ja, pl, pt, ru, sv, tr, zh val = val || $themeConfig.locale; const list = store.languageList; const item = list.find((item: any) => item.code === val); if (item) { this.toggleLanguage(item); } val = localStorage.getItem('rtlClass'); // rtl, ltr val = val || $themeConfig.rtlClass; store.toggleRTL(val); val = localStorage.getItem('animation'); // animate__fadeIn, animate__fadeInDown, animate__fadeInUp, animate__fadeInLeft, animate__fadeInRight, animate__slideInDown, animate__slideInLeft, animate__slideInRight, animate__zoomIn val = val || $themeConfig.animation; store.toggleAnimation(val); val = localStorage.getItem('navbar'); // navbar-sticky, navbar-floating, navbar-static val = val || $themeConfig.navbar; store.toggleNavbar(val); val = localStorage.getItem('semidark'); val = val === 'true' ? true : $themeConfig.semidark; store.toggleSemidark(val); }, toggleLanguage(item: any) { const store = useAppStore(); let lang: any = null; if (item) { lang = item; } else { let code = store.locale || null; if (!code) { code = localStorage.getItem('i18n_locale'); } item = store.languageList.find((d: any) => d.code === code); if (item) { lang = item; } } if (!lang) { lang = store.languageList.find((d: any) => d.code === 'en'); } store.toggleLocale(lang.code); return lang; }, changeAnimation(type = 'add') { const store = useAppStore(); if (store.animation) { const eleanimation: any = document.querySelector('.animation'); if (type === 'add') { eleanimation?.classList.add('animate__animated'); eleanimation?.classList.add(store.animation); } else { eleanimation.classList.remove('animate__animated'); eleanimation.classList.remove(store.animation); } } }, };
2. theme.config.js : This is theme configuration js file. This file contains optional setting for set defaut layout, theme and language functionality. It contains the code as follows :-
// APP CONFIG export const $themeConfig = { locale: 'en', // en, da, de, el, es, fr, hu, it, ja, pl, pt, ru, sv, tr, zh theme: 'light', // light, dark, system menu: 'vertical', // vertical, collapsible-vertical, horizontal layout: 'full', // full, boxed-layout rtlClass: 'ltr', // rtl, ltr animation: '', // animate__fadeIn, animate__fadeInDown, animate__fadeInUp, animate__fadeInLeft, animate__fadeInRight, animate__slideInDown, animate__slideInLeft, animate__slideInRight, animate__zoomIn navbar: 'navbar-sticky', // navbar-sticky, navbar-floating, navbar-static semidark: false, };