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

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

<template>
  <li class="gl-line-height-20 gl-py-3 gl-border-b-solid gl-border-b-2 gl-border-b-gray-100">
    <label class="gl-font-weight-bold gl-mb-2"> {{ label }} </label>
    <div class="gl-text-gray-500 gl-mb-0">
      <slot></slot>
    </div>
  </li>
</template>