24 lines
442 B
Vue
24 lines
442 B
Vue
<script>
|
|
import { GlBadge, GlTab } from '@gitlab/ui';
|
|
import { s__ } from '~/locale';
|
|
|
|
export default {
|
|
i18n: {
|
|
title: s__('UserProfile|Following'),
|
|
},
|
|
components: {
|
|
GlBadge,
|
|
GlTab,
|
|
},
|
|
inject: ['followees'],
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<gl-tab>
|
|
<template #title>
|
|
<span>{{ $options.i18n.title }}</span>
|
|
<gl-badge size="sm" class="gl-ml-2">{{ followees }}</gl-badge>
|
|
</template>
|
|
</gl-tab>
|
|
</template>
|