debian-mirror-gitlab/app/assets/javascripts/profile/components/overview_tab.vue
2023-05-27 22:25:52 +05:30

18 lines
364 B
Vue

<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>