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: 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>