fix(theme): don't show sidebar on home layout (#825) (#829)

pull/831/head
Divyansh Singh 2 years ago committed by GitHub
parent 9bc43306a1
commit 42cbd31327
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,7 +16,11 @@ export function useSidebar() {
})
const hasSidebar = computed(() => {
return frontmatter.value.sidebar !== false && sidebar.value.length > 0
return (
frontmatter.value.sidebar !== false &&
sidebar.value.length > 0 &&
frontmatter.value.layout !== 'home'
)
})
function open() {

Loading…
Cancel
Save