pleroma-fe/src/components/follow_button/follow_button.vue

14 lines
272 B
Vue
Raw Normal View History

2019-09-30 19:34:51 +02:00
<template>
<button
class="btn btn-default btn-block follow-button"
:class="{ pressed: isPressed }"
:disabled="inProgress"
:title="$t(title)"
@click="doClick"
>
{{ $t(label) }}
</button>
</template>
<script src="./follow_button.js"></script>