pleroma-fe/src/components/follow_requests/follow_requests.js
2026-01-06 16:22:52 +02:00

14 lines
275 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