14 lines
287 B
JavaScript
14 lines
287 B
JavaScript
import FollowRequestCard from 'src/components/follow_request_card/follow_request_card.vue'
|
|
|
|
const FollowRequests = {
|
|
components: {
|
|
FollowRequestCard,
|
|
},
|
|
computed: {
|
|
requests() {
|
|
return this.$store.state.api.followRequests
|
|
},
|
|
},
|
|
}
|
|
|
|
export default FollowRequests
|