summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/participants/sidebar_participants.vue
blob: 6fcd2f95309029d2dac9af87801a0d0ca75be00a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<script>
import Store from '../../stores/sidebar_store';
import participants from './participants.vue';

export default {
  data() {
    return {
      store: new Store(),
    };
  },
  props: {
    mediator: {
      type: Object,
      required: true,
    },
  },
  components: {
    participants,
  },
};
</script>

<template>
  <div class="block participants">
    <participants
      :loading="store.isFetching.participants"
      :participants="store.participants"
      :number-of-less-participants="7"
    />
  </div>
</template>