2026-06-04 21:56:25 +03:00
|
|
|
import FollowRequestCard from 'src/components/follow_request_card/follow_request_card.vue'
|
2018-06-07 00:58:44 +00:00
|
|
|
|
|
|
|
|
const FollowRequests = {
|
|
|
|
|
components: {
|
2026-01-06 16:22:52 +02:00
|
|
|
FollowRequestCard,
|
2018-06-07 00:58:44 +00:00
|
|
|
},
|
2018-06-07 01:24:31 +00:00
|
|
|
computed: {
|
2026-01-06 16:22:52 +02:00
|
|
|
requests() {
|
2018-06-07 01:24:31 +00:00
|
|
|
return this.$store.state.api.followRequests
|
2026-01-06 16:22:52 +02:00
|
|
|
},
|
|
|
|
|
},
|
2018-06-07 00:58:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default FollowRequests
|