akkoma-fe/src/components/follow_requests/follow_requests.js
2018-06-07 00:58:44 +00:00

19 lines
339 B
JavaScript

import UserCard from '../user_card/user_card.vue'
const FollowRequests = {
data () {
return {
requests: []
}
},
components: {
UserCard
},
created () {
this.$store.state.api.backendInteractor.fetchFollowRequests()
.then((requests) => { this.requests = requests })
}
}
export default FollowRequests