2019-10-08 18:21:48 +11:00
|
|
|
<template>
|
|
|
|
<button
|
2020-11-24 21:32:42 +11:00
|
|
|
class="btn button-default follow-button"
|
2020-01-14 07:19:19 +11:00
|
|
|
:class="{ toggled: isPressed }"
|
2019-10-08 18:21:48 +11:00
|
|
|
:disabled="inProgress"
|
|
|
|
:title="title"
|
|
|
|
@click="onClick"
|
|
|
|
>
|
|
|
|
{{ label }}
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./follow_button.js"></script>
|