1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 21:24:18 +00:00

ajout du bestiaire

This commit is contained in:
Maxime Moraine 2020-04-15 16:27:16 +02:00
parent 637b99110c
commit dc30394196
380 changed files with 18521 additions and 635 deletions

View file

@ -3,6 +3,7 @@
<PageToc v-if="hasPageToc" />
<SpellFilters v-if="hasSpellFilters" />
<MagicItemFilters v-if="hasMagicItemFilters" />
<MonsterFilters v-if="hasMonsterFilters" />
</v-navigation-drawer>
</template>
@ -10,6 +11,7 @@
import PageToc from '@theme/components/PageToc'
import SpellFilters from '@theme/components/SpellFilters'
import MagicItemFilters from '@theme/components/MagicItemFilters'
import MonsterFilters from '@theme/components/MonsterFilters'
export default {
name: 'RightDrawer',
@ -17,6 +19,7 @@ export default {
components: {
SpellFilters,
MagicItemFilters,
MonsterFilters,
PageToc
},
@ -43,6 +46,9 @@ export default {
hasMagicItemFilters () {
return this.$store.state.inRightDrawer == 'magicItemFilters'
},
hasMonsterFilters () {
return this.$store.state.inRightDrawer == 'monsterFilters'
},
},
mounted () {