mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe.git
synced 2025-02-24 22:23:04 +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
|