Vuely
  • Introduction
  • Folder Structure
  • Vuely VueJs
    • Different Layouts
      • Adding Menu In Different Layouts
    • Installation
    • Adding New Component
    • Translate The App(Multi Language Support)
    • Adding New Widgets
    • Themes
    • Style Customization
    • Build an App from Scratch
    • Seed Project
    • Deployment
    • UI Components
      • Buttons
      • Cards
      • Selection controls
      • Carousel
      • Chips
      • Date/Month Pickers
      • Dialog
      • Grid
      • Input / Text field
      • List
      • Menu
      • Progress
      • Banner
      • Select
      • Slider
      • Tabs
      • Toolbar
      • Timepicker
      • Forms
  • Vuely-Laravel
    • Folder Structure
    • Installation Vuely-Laravel
    • Customization
  • Vuely-Laravel with Api Authentication
    • Getting Started
    • Passport Authentication
    • Run Vuely-Laravel-Passport
  • Vuely ExpressJs
    • Folder Structure
    • Installation
    • Layouts
    • Style Customization
    • Deployment
    • Translate the App
    • Browsers Compatibilty
    • Credits
  • Vuely Angular Version
    • Folder Structure
    • Installation
    • Layouts
    • Adding/Deleting Menu & Component
    • RTL
    • Deployment
  • Credits
  • Template Update
  • FAQ's (Frequently Asked Questions)
  • Changelog
  • Customer Support
Powered by GitBook
On this page
  • Default Layout
  • Mini Sidebar
  • Dark Mode
  1. Vuely Angular Version

Layouts

Vuely Angular comes with two handcrafted layouts. Read the documentation carefully to use the following layouts in your template.

PreviousInstallationNextAdding/Deleting Menu & Component

Last updated 6 years ago

Default Layout

Vuely Angular by default has traditional admin layout but also provides you flexibility to choose your own.

Mini Sidebar

To enable mini sidebar layout, go tosrc->app->Layouts->VerticalLayout and open VerticalLayout.component.html file, Now search for the collapsed-sidebar class at div <div [dir]="layout" & change its value to true.

VerticalLayout.component.html
'collapsed-sidebar': true

Dark Mode

To enable the dark mode in the template, go tosrc->app->Layouts->VerticalLayout and open VerticalLayout.component.html file & search for the theme-light class at div <div [dir]="layout"

VerticalLayout.component.html
<div [dir]="layout" class="app-main theme-light ....">
    ....
</div>

Now Replace the "theme-light" class with "theme-dark" class. Like mention below :

VerticalLayout.component.html
<div [dir]="layout" class="app-main theme-dark ....">
    ....
</div>

Default Layout
Mini Sidebar Layout
Dark Mode