2020-03-26 19:04:23 +01:00
|
|
|
<template>
|
|
|
|
|
<div>
|
2020-04-05 14:38:20 +02:00
|
|
|
<Breadcrumb />
|
2020-03-30 11:03:20 +02:00
|
|
|
<Page></Page>
|
2020-04-15 16:27:16 +02:00
|
|
|
<Edit />
|
2020-03-26 19:04:23 +01:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-04-05 14:38:20 +02:00
|
|
|
import Breadcrumb from '@theme/components/Breadcrumb'
|
|
|
|
|
import Page from '@theme/components/Page'
|
2020-04-15 16:27:16 +02:00
|
|
|
import Edit from '@theme/components/Edit'
|
2020-03-26 19:04:23 +01:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'Layout',
|
|
|
|
|
|
|
|
|
|
components: {
|
2020-04-05 14:38:20 +02:00
|
|
|
Breadcrumb,
|
2020-04-15 16:27:16 +02:00
|
|
|
Page,
|
|
|
|
|
Edit
|
2020-03-26 19:04:23 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
computed: {
|
2020-04-02 14:20:33 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
setRightDrawer () {
|
2020-04-11 18:01:59 +02:00
|
|
|
this.$store.commit('setDrawer', this.$vuetify.breakpoint.lgAndUp)
|
2020-04-02 14:20:33 +02:00
|
|
|
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)
|
2020-04-05 14:38:20 +02:00
|
|
|
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
2020-04-02 14:20:33 +02:00
|
|
|
this.$store.commit('setInRightDrawer', 'pageToc')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
|
$route (id) {
|
|
|
|
|
this.setRightDrawer()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
mounted () {
|
|
|
|
|
this.setRightDrawer()
|
2020-03-26 19:04:23 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|