1 2 3 4 5 6 7 8 9 10 11 12 13 14
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