mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-29 04:34:19 +00:00
51 lines
1 KiB
Vue
51 lines
1 KiB
Vue
<template>
|
|
<div>
|
|
<Breadcrumb />
|
|
<Page></Page>
|
|
<Edit />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Breadcrumb from '@theme/components/Breadcrumb'
|
|
import Page from '@theme/components/Page'
|
|
import Edit from '@theme/components/Edit'
|
|
|
|
export default {
|
|
name: 'Layout',
|
|
|
|
components: {
|
|
Breadcrumb,
|
|
Page,
|
|
Edit
|
|
},
|
|
|
|
computed: {
|
|
},
|
|
|
|
methods: {
|
|
setRightDrawer () {
|
|
this.$store.commit('setDrawer', this.$vuetify.breakpoint.lgAndUp)
|
|
this.$store.commit('setHasRightDrawer', false)
|
|
this.$store.commit('setRightDrawer', false)
|
|
this.$store.commit('setInRightDrawer', null)
|
|
|
|
if (this.$page.headers && this.$page.headers.length > 0 && this.$page.frontmatter.toc !== false) {
|
|
this.$store.commit('setHasRightDrawer', true)
|
|
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
|
this.$store.commit('setInRightDrawer', 'pageToc')
|
|
}
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
$route (id) {
|
|
this.setRightDrawer()
|
|
}
|
|
},
|
|
|
|
mounted () {
|
|
this.setRightDrawer()
|
|
}
|
|
}
|
|
</script>
|