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

15 lines
235 B
JavaScript

import UserCard from '../user_card/user_card.vue'
const FollowRequests = {
components: {
UserCard
},
computed: {
requests () {
return this.$store.state.api.followRequests
}
}
}
export default FollowRequests