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

get_ref.js « mixins « repository « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a43e0e91bcf8cbcccb1ad1e11162671ce533c8bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import getRef from '../queries/getRef.query.graphql';

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