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

ide_file_row.vue « components « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f41337762fdb45346a7435e7e3accd4de0f44b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
/**
 * This component is an iterative step towards refactoring and simplifying `vue_shared/components/file_row.vue`
 * https://gitlab.com/gitlab-org/gitlab/-/merge_requests/23720
 */
import FileRow from '~/vue_shared/components/file_row.vue';

export default {
  components: {
    FileRow,
  },
};
</script>

<template>
  <file-row v-bind="$attrs" v-on="$listeners" />
</template>