mirror of
https://iceshrimp.dev/iceshrimp/akkoma-fe.git
synced 2025-12-16 16:33:03 +01:00
13 lines
254 B
Vue
13 lines
254 B
Vue
<template>
|
|
<button
|
|
class="btn btn-default follow-button"
|
|
:class="{ pressed: isPressed }"
|
|
:disabled="inProgress"
|
|
:title="title"
|
|
@click="onClick"
|
|
>
|
|
{{ label }}
|
|
</button>
|
|
</template>
|
|
|
|
<script src="./follow_button.js"></script>
|