Implement retweet action
This commit is contained in:
parent
242ae8e91b
commit
11125abeeb
3 changed files with 13 additions and 1 deletions
|
@ -2,6 +2,9 @@ const RetweetButton = {
|
|||
props: [ 'status' ],
|
||||
methods: {
|
||||
retweet () {
|
||||
if (!this.status.repeated) {
|
||||
this.$store.dispatch('retweet', {id: this.status.id})
|
||||
}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue