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

28 lines
597 B
Vue
Raw Normal View History

2020-04-27 09:04:49 +02:00
<template>
2020-04-27 17:42:48 +02:00
<div>
<Breadcrumb class="mr-auto" />
<AbilityCalculator />
</div>
2020-04-27 09:04:49 +02:00
</template>
<script>
2020-04-27 17:42:48 +02:00
import Breadcrumb from '@theme/components/Breadcrumb'
2020-04-27 09:04:49 +02:00
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'
}
2020-04-27 09:04:49 +02:00
}
</script>
<style lang="scss">
</style>