Dark Version Nuxt JS
Update the below changes in the assets/scss/app.scss.
@import "variables-dark";
@import './bootstrap-dark.scss';
In stores/layout.js you need to set
mode ,
leftSidebarType and topbar property to
dark.
Dark Version Vue JS
In order to have dark mode enabled, replace
@import "variables"; to
@import "variables-dark";
and
@import "bootstrap"; to
@import "bootstrap-dark"; in the scss file
src/assets/scss/app.scss.
In src/state/modules/layout.js you need to set
mode ,
leftSidebarType and topbar property to
dark.