14 lines
235 B
JavaScript
14 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
|