akkoma-fe/src/components/block_card/block_card.vue

16 lines
457 B
Vue
Raw Normal View History

2019-02-13 19:55:02 +00:00
<template>
<basic-user-card :user="user">
<template slot="secondary-area">
<button class="btn btn-default" @click="unblockUser" :disabled="progress">
<template v-if="progress">
{{ $t('user_card.unblock_progress') }}
</template>
<template v-else>
{{ $t('user_card.unblock') }}
</template>
</button>
</template>
</basic-user-card>
</template>
<script src="./block_card.js"></script>