debian-mirror-gitlab/app/assets/javascripts/profile/components/snippets_tab.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
289 B
Vue
Raw Normal View History

2023-04-23 21:23:45 +05:30
<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>