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

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

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

<template>
  <gl-tab :title="$options.i18n.title">
    <!-- placeholder -->
  </gl-tab>
</template>