mirror of
https://git.rape.pet/ulith/amputoma-fe.git
synced 2025-02-10 07:12:39 +01:00
17 lines
226 B
JavaScript
17 lines
226 B
JavaScript
|
const RetweetButton = {
|
||
|
props: [ 'status' ],
|
||
|
methods: {
|
||
|
retweet () {
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
classes () {
|
||
|
return {
|
||
|
'retweeted': this.status.repeated
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default RetweetButton
|