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