mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
* Added more styles to user profile modal and replaced memberDetail * Added notify library * Added edit avator * Added notification menu updates * Fixed lint issues * Added group invite functionality * Added many achievement modals * Added initial quest modals * Added guild, drops, and rebirth modals * Added the reset of the achievement modals and fixed lint
27 lines
570 B
Vue
27 lines
570 B
Vue
<template lang="pug">
|
|
b-modal#armoire-empty(:title="$t('armoireText')", size='lg', :hide-footer="true")
|
|
.modal-header
|
|
.shop_armoire.pull-right
|
|
.modal-body
|
|
p {{$t('armoireLastItem')}}
|
|
br
|
|
p {{$t('armoireNotesEmpty')}}
|
|
.modal-footer
|
|
button.btn.btn-default(@click='close()') {{$t('close')}}
|
|
</template>
|
|
|
|
<script>
|
|
import bModal from 'bootstrap-vue/lib/components/modal';
|
|
|
|
export default {
|
|
components: {
|
|
bModal,
|
|
},
|
|
methods: {
|
|
close () {
|
|
this.$root.$emit('hide::modal', 'armoire-empty');
|
|
},
|
|
},
|
|
};
|
|
</script>
|