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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/profile/components/following_tab.vue')
-rw-r--r--app/assets/javascripts/profile/components/following_tab.vue17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/assets/javascripts/profile/components/following_tab.vue b/app/assets/javascripts/profile/components/following_tab.vue
new file mode 100644
index 00000000000..6d9631c5e89
--- /dev/null
+++ b/app/assets/javascripts/profile/components/following_tab.vue
@@ -0,0 +1,17 @@
+<script>
+import { GlTab } from '@gitlab/ui';
+import { s__ } from '~/locale';
+
+export default {
+ i18n: {
+ title: s__('UserProfile|Following'),
+ },
+ components: { GlTab },
+};
+</script>
+
+<template>
+ <gl-tab :title="$options.i18n.title">
+ <!-- placeholder -->
+ </gl-tab>
+</template>