Add retweet button component

Expand API service for retweet
This commit is contained in:
Jiayi Zheng 2016-11-13 16:42:56 +01:00
parent ee009f63dd
commit 242ae8e91b
5 changed files with 46 additions and 3 deletions

View file

@ -0,0 +1,18 @@
<template>
<div>
<i :class='classes' class='icon-retweet fa' v-on:click.prevent=''></i>
<span v-if='status.repeat_num > 0'>{{status.repeat_num}}</span>
</div>
</template>
<script src="./retweet_button.js" ></script>
<style>
.icon-retweet {
cursor: pointer
}
.retweeted {
cursor: auto;
color: green;
}
</style>