Layouts
The layout system of our template offers developers a high level of flexibility.
// env.d.ts
import 'vue-router'
declare module 'vue-router' {
interface RouteMeta {
layout?: 'blank' | 'default' | 'component' // Set new layout here
unauthenticatedOnly?: boolean
public?: boolean
}
}1. Blank layout
2. Default layout
3. Component layout
Last updated