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

associations_list_item.vue « associations « components « users « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88cb24aaf8f2f2e0f96aaf279c1412baddb7d45a (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
<script>
import { GlSprintf } from '@gitlab/ui';

export default {
  components: { GlSprintf },
  props: {
    message: {
      type: String,
      required: true,
    },
    count: {
      type: Number,
      required: true,
    },
  },
};
</script>

<template>
  <li>
    <gl-sprintf :message="message">
      <template #count>
        <strong>{{ count }}</strong>
      </template>
    </gl-sprintf>
  </li>
</template>