1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 13:14:20 +00:00
5e-drs/docs/.vuepress/theme/layouts/AbilityCalculatorLayout.vue

25 lines
538 B
Vue

<template>
<div>
<Breadcrumb class="mr-auto" />
<AbilityCalculator />
</div>
</template>
<script>
import Breadcrumb from '@theme/components/Breadcrumb'
import AbilityCalculator from '@theme/components/AbilityCalculator'
export default {
components: { Breadcrumb, AbilityCalculator },
mounted () {
this.$store.commit('setHasRightDrawer', false)
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
this.$store.commit('setInRightDrawer', null)
}
}
</script>
<style lang="scss">
</style>