pleroma-fe/src/components/follow_requests/follow_requests.js

15 lines
273 B
JavaScript
Raw Normal View History

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