diff options
| author | Maksim Pechnikov <parallel588@gmail.com> | 2019-09-30 20:34:51 +0300 |
|---|---|---|
| committer | Maksim Pechnikov <parallel588@gmail.com> | 2019-09-30 20:36:14 +0300 |
| commit | 188b6f56ed2f983d8f0fba4dc8f7327ebbee321d (patch) | |
| tree | c44c03501d88a5331c4038df9ab9b73e0e7c28c7 /src/components/follow_button/follow_button.vue | |
| parent | 19cb98b85fc071dccd88bcdddff75d99cd4d944d (diff) | |
added acccount_actions component
Diffstat (limited to 'src/components/follow_button/follow_button.vue')
| -rw-r--r-- | src/components/follow_button/follow_button.vue | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/follow_button/follow_button.vue b/src/components/follow_button/follow_button.vue new file mode 100644 index 00000000..61aa75a0 --- /dev/null +++ b/src/components/follow_button/follow_button.vue @@ -0,0 +1,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> |
