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

15 行
273 B
JavaScript
Raw 通常表示 履歴

import FollowRequestCard from '../follow_request_card/follow_request_card.vue'
2018-06-07 09:58:44 +09:00
const FollowRequests = {
components: {
FollowRequestCard
2018-06-07 09:58:44 +09:00
},
computed: {
requests () {
return this.$store.state.api.followRequests
}
2018-06-07 09:58:44 +09:00
}
}
export default FollowRequests