mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-05-07 21:39:12 +08:00
14 lines
235 B
JavaScript
14 lines
235 B
JavaScript
import UserCard from '../user_card/user_card.vue'
|
|
|
|
const FollowRequests = {
|
|
components: {
|
|
UserCard
|
|
},
|
|
computed: {
|
|
requests () {
|
|
return this.$store.state.api.followRequests
|
|
}
|
|
}
|
|
}
|
|
|
|
export default FollowRequests
|