Sidebar Layout

Basic Layout

<template>
	<SidebarLayout></SidebarLayout>
</template>
<template>
	<SidebarLayout>
		<template #sidebar> Sidebar content can be injected through the sidebar slot. </template>
	</SidebarLayout>
</template>

Default Slot

SidebarLayout exposes a default slot that can be used to inject the content into the body of the layout.

The body of the layout will overflow by itself.
<template>
	<SidebarLayout>
		SidebarLayout exposes a default slot that can be used to inject the content into the body of
		the layout.
		<br /><br />
		The body of the layout will overflow by itself.
	</SidebarLayout>
</template>
Last Updated:
Contributors: Carlos Pereira