2016-11-13 07:42:56 -08:00
|
|
|
<template>
|
|
|
|
<div>
|
2017-11-21 15:00:25 -08:00
|
|
|
<i :class='classes' class='icon-retweet base09' v-on:click.prevent='retweet()'></i>
|
2016-11-13 07:42:56 -08:00
|
|
|
<span v-if='status.repeat_num > 0'>{{status.repeat_num}}</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./retweet_button.js" ></script>
|
|
|
|
|
2016-11-13 08:52:20 -08:00
|
|
|
<style lang='scss'>
|
|
|
|
@import '../../_variables.scss';
|
|
|
|
.icon-retweet {
|
|
|
|
cursor: pointer;
|
2017-03-08 20:45:40 -08:00
|
|
|
animation-duration: 0.6s;
|
2016-11-13 08:52:20 -08:00
|
|
|
&:hover {
|
|
|
|
color: $green;
|
|
|
|
}
|
|
|
|
}
|
2017-11-24 13:55:46 -08:00
|
|
|
.icon-retweet.retweeted {
|
2016-11-13 08:52:20 -08:00
|
|
|
color: $green;
|
|
|
|
}
|
2016-11-13 07:42:56 -08:00
|
|
|
</style>
|