de945e5f88
This reverts commit 1d56d486f1f679e793e710969ad54cce5fdb1ebc. # Conflicts: # src/components/follow_requests/follow_requests.vue # src/components/user_search/user_search.vue # src/components/who_to_follow/who_to_follow.vue
14 lines
273 B
JavaScript
14 lines
273 B
JavaScript
import FollowRequestCard from '../follow_request_card/follow_request_card.vue'
|
|
|
|
const FollowRequests = {
|
|
components: {
|
|
FollowRequestCard
|
|
},
|
|
computed: {
|
|
requests () {
|
|
return this.$store.state.api.followRequests
|
|
}
|
|
}
|
|
}
|
|
|
|
export default FollowRequests
|