mirror of
https://git.rape.pet/ulith/amputoma-fe.git
synced 2025-02-10 07:12:39 +01:00
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
|