2019-03-20 05:36:27 +11:00
|
|
|
<template>
|
|
|
|
<div class="remote-follow">
|
2019-07-05 17:17:44 +10:00
|
|
|
<form
|
|
|
|
method="POST"
|
|
|
|
:action="subscribeUrl"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="hidden"
|
|
|
|
name="nickname"
|
|
|
|
:value="user.screen_name"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="hidden"
|
|
|
|
name="profile"
|
|
|
|
value=""
|
|
|
|
>
|
|
|
|
<button
|
|
|
|
click="submit"
|
|
|
|
class="remote-button"
|
|
|
|
>
|
2019-03-20 05:36:27 +11:00
|
|
|
{{ $t('user_card.remote_follow') }}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./remote_follow.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.remote-follow {
|
|
|
|
max-width: 220px;
|
|
|
|
|
|
|
|
.remote-button {
|
|
|
|
width: 100%;
|
|
|
|
min-height: 28px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|