mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 05:04:21 +00:00
27 lines
597 B
Vue
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>
|