1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 21:24:18 +00:00
5e-drs/docs/.vuepress/theme/layouts/AbilityCalculatorLayout.vue
2020-04-28 14:47:20 +02:00

27 lines
597 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)
this.$page.title = 'Calculateur de caractéristiques'
}
}
</script>
<style lang="scss">
</style>