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

index.vue « pages « repository « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d92e9174ca52443534f3e0bf835c9f9b0b72819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
import FileTable from '../components/table/index.vue';

export default {
  components: {
    FileTable,
  },
  data() {
    return {
      ref: '',
    };
  },
};
</script>

<template>
  <file-table path="/" />
</template>