summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/pages/tree.vue
blob: f51aafee775573b1f6e4465f688de6ac3a2e628c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
export default {
  props: {
    path: {
      type: String,
      required: false,
      default: '/',
    },
  },
};
</script>

<template>
  <div>{{ path }}</div>
</template>