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

candidate_detail_row.vue « components « show « candidates « routes « experiment_tracking « ml « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c7460940a04c582cb184f10eba502e40ca1ec4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script>
export default {
  name: 'CandidateDetailRow',
  props: {
    label: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <tr>
    <td class="gl-font-weight-bold">{{ label }}</td>
    <td>
      <slot></slot>
    </td>
  </tr>
</template>