Layouts

The layouts/ directory contains your Application Layouts. More information about the usage of this directory in the documentation.

layouts ├── README.md ├── blank.vue ├── boxed.vue ├── default.vue ├── error.vue ├── fixed.vue └── sticky.vue

Default Layout

Set the default layout from store/settings.js. Possible values are any layout file names available in the layouts/ folder.

export const state = () => ({ state: { layout: { layout: 'default' } } })