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

strategy_label.vue « components « feature_flags « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2d3ec5708f89e00598c93b5d38e42345c9be1ef (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
25
26
27
28
29
<script>
export default {
  props: {
    name: {
      type: String,
      required: true,
    },
    scopes: {
      type: String,
      required: false,
      default: null,
    },
    parameters: {
      type: String,
      required: false,
      default: null,
    },
  },
};
</script>
<template>
  <div>
    <strong class="gl-fw-bold"
      >{{ name }}<span v-if="parameters"> - {{ parameters }}</span
      >:</strong
    >
    <span v-if="scopes">{{ scopes }}</span>
  </div>
</template>