# Page Layout
# Motivation
If you want to hidden sidebar
, toc
and pageEdit
at the page section and only remain <Header>
, you'll need page layout.
# Quick Start
Declare a Global Vue Component (opens new window), e.g.
.vuepress/components/PageLayout1.vue
.Declare
pageLayout
via Frontmatter (opens new window):
---
pageLayout: PageLayout1
---
An example here.