summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/pages/index.vue
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>