mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 21:24:18 +00:00
54 lines
925 B
Vue
54 lines
925 B
Vue
<template>
|
|
<v-app class="srd">
|
|
|
|
<NavDrawer />
|
|
<RightDrawer v-if="hasRightDrawer" />
|
|
|
|
<Navbar />
|
|
|
|
<v-content>
|
|
<v-container fluid>
|
|
<v-row align="start" justify="center">
|
|
<v-col cols="12">
|
|
<DefaultGlobalLayout/>
|
|
</v-col>
|
|
</v-row>
|
|
</v-container>
|
|
</v-content>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import GlobalLayout from '@app/components/GlobalLayout.vue'
|
|
import Navbar from '@theme/components/Navbar.vue'
|
|
import NavDrawer from '@theme/components/NavDrawer.vue'
|
|
import RightDrawer from '@theme/components/RightDrawer.vue'
|
|
|
|
export default {
|
|
name: 'GlobalLayout',
|
|
|
|
components: {
|
|
DefaultGlobalLayout: GlobalLayout,
|
|
Navbar,
|
|
NavDrawer,
|
|
RightDrawer
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
hasRightDrawer() {
|
|
return this.$store.state.hasRightDrawer
|
|
}
|
|
},
|
|
|
|
mounted () {
|
|
},
|
|
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|