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

job_item.vue « pipeline_mini_graph « components « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f97097def6698637f5920398065fd7e09167672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
export default {
  props: {
    job: {
      type: Object,
      required: true,
    },
  },
};
</script>
<template>
  <div>{{ job.id }}</div>
</template>