18 lines
289 B
Vue
18 lines
289 B
Vue
|
<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>
|