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

overview_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: 76fb13919dfeb362b6214c0d77e0345860667ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
import { GlTab } from '@gitlab/ui';
import { s__ } from '~/locale';
import ActivityCalendar from './activity_calendar.vue';

export default {
  i18n: {
    title: s__('UserProfile|Overview'),
  },
  components: { GlTab, ActivityCalendar },
};
</script>

<template>
  <gl-tab :title="$options.i18n.title">
    <activity-calendar />
  </gl-tab>
</template>