gitlab-ce/app/assets/javascripts/projects/your_work/components/app.vue

15 lines
231 B
Vue

<script>
import TabsWithList from '~/groups_projects/components/tabs_with_list.vue';
export default {
name: 'YourWorkProjectsApp',
components: {
TabsWithList,
},
};
</script>
<template>
<tabs-with-list />
</template>