Dashboard Layout

Learn How to Change or Customize Dashboard Layout

Bankhub has 3 different layout options. You can choose between a vertical layout, a horizontal layout. If you want to use a different layout, you can do so by changing the layout option in the configuration file. Change your desired layout at top of the src/assets/js/main.js file.

            
  const themeConfig = {
    layout: 'vertical', // vertical, hovered, horizontal, two-column, detached
  }
            
          

Disable or Remove Customizer

If you want to disable or remove customizer, you can make customizer false in main.js like this image.

Make this false to disable customizer

            
                const themeConfig = {
                  customizer: true // true, false
                }