2017-08-01 18:52:49 +00:00
|
|
|
<template lang="pug">
|
2017-08-26 02:56:21 +00:00
|
|
|
b-modal#rebirth-enabled(:title="$t('rebirthNew')", size='md', :hide-footer="true")
|
2017-08-01 18:52:49 +00:00
|
|
|
.modal-body
|
2017-08-26 02:56:21 +00:00
|
|
|
.col-12
|
2017-08-01 18:52:49 +00:00
|
|
|
.rebirth_orb
|
2017-08-26 02:56:21 +00:00
|
|
|
p
|
|
|
|
|
span {{ $t('rebirthUnlock') }}
|
2017-08-01 18:52:49 +00:00
|
|
|
.modal-footer
|
2017-08-26 02:56:21 +00:00
|
|
|
.col-12.text-center
|
|
|
|
|
button.btn.btn-primary(@click='close()') {{ $t('close') }}
|
2017-08-01 18:52:49 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scope>
|
2017-08-26 02:56:21 +00:00
|
|
|
.rebirth_orb {
|
|
|
|
|
margin: 0 auto;
|
2017-08-01 18:52:49 +00:00
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import bModal from 'bootstrap-vue/lib/components/modal';
|
|
|
|
|
|
|
|
|
|
import { mapState } from 'client/libs/store';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
bModal,
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
...mapState({user: 'user.data'}),
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
close () {
|
|
|
|
|
this.$root.$emit('hide::modal', 'rebirth-enabled');
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|