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

tree.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: 3b898d1aa9199131f2291b96b97e924dc5151c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script>
import FileTable from '../components/table/index.vue';

export default {
  components: {
    FileTable,
  },
  props: {
    path: {
      type: String,
      required: false,
      default: '/',
    },
  },
};
</script>

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