Welcome to mirror list, hosted at ThFree Co, Russian Federation.

following_tab.vue « components « profile « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ee878e3dcc5a9b26af621790ed9c213e656416c (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
<script>
import { GlBadge, GlTab } from '@gitlab/ui';
import { s__ } from '~/locale';

export default {
  i18n: {
    title: s__('UserProfile|Following'),
  },
  components: {
    GlBadge,
    GlTab,
  },
  inject: ['followeesCount'],
};
</script>

<template>
  <gl-tab>
    <template #title>
      <span>{{ $options.i18n.title }}</span>
      <gl-badge size="sm" class="gl-ml-2">{{ followeesCount }}</gl-badge>
    </template>
  </gl-tab>
</template>