2019-02-26 04:34:40 +00:00
|
|
|
import FollowRequestCard from '../follow_request_card/follow_request_card.vue'
|
2018-06-07 00:58:44 +00:00
|
|
|
|
|
|
|
const FollowRequests = {
|
|
|
|
components: {
|
2019-02-26 04:34:40 +00:00
|
|
|
FollowRequestCard
|
2018-06-07 00:58:44 +00:00
|
|
|
},
|
2018-06-07 01:24:31 +00:00
|
|
|
computed: {
|
|
|
|
requests () {
|
|
|
|
return this.$store.state.api.followRequests
|
|
|
|
}
|
2018-06-07 00:58:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default FollowRequests
|