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

duration_badge.vue « log « components « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83f62703d27be228140e2f9940b9d234ad58eb18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
export default {
  props: {
    duration: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <div class="duration rounded align-self-start px-2 ml-2 flex-shrink-0">{{ duration }}</div>
</template>