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

14 lines
275 B
JavaScript
Raw Normal View History

import FollowRequestCard from '../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
},
computed: {
2026-01-06 16:22:52 +02:00
requests() {
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