summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/pages/index.vue
blob: fdbf195f0f61adb5577d01c0c88978dc343301c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script>
import getRef from '../queries/getRef.graphql';

export default {
  apollo: {
    ref: {
      query: getRef,
    },
  },
  data() {
    return {
      ref: '',
    };
  },
};
</script>

<template>
  <div>
    <router-link :to="{ path: `/tree/${ref}/app` }">
      Go to tree
    </router-link>
  </div>
</template>