forked from AkkomaGang/akkoma-fe
19 lines
331 B
JavaScript
19 lines
331 B
JavaScript
const RetweetButton = {
|
|
props: [ 'status' ],
|
|
methods: {
|
|
retweet () {
|
|
if (!this.status.repeated) {
|
|
this.$store.dispatch('retweet', {id: this.status.id})
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
classes () {
|
|
return {
|
|
'retweeted': this.status.repeated
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export default RetweetButton
|