aboutsummaryrefslogtreecommitdiff
path: root/src/components/follow_button/follow_button.vue
blob: 61aa75a0a641b7a6490d037618bf880306f38f77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<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>