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

14 lines
255 B
Vue
Raw Normal View History

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