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/global-components/MyMagicItemsButton.vue
2020-05-26 19:30:08 +02:00

12 lines
408 B
Vue

<template>
<v-btn color="primary" class="mb-4" depressed link to="/mes-objets-magiques/">Mes objets magiques<v-chip v-show="$store.state.myMagicItems.magicItems.length > 0" class="ml-2" color="#fff" small label text-color="#222">{{ $store.state.myMagicItems.magicItems.length }}</v-chip></v-btn>
</template>
<script>
export default {
name: 'MyMagicItemsButton'
}
</script>
<style lang="scss">
</style>