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

prometheus_header.vue « shared « components « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 153c8f389dba664eef6120c76c2f51cfdb8bf6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
export default {
  props: {
    graphTitle: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <div class="prometheus-graph-header">
    <h5 class="prometheus-graph-title js-graph-title">{{ graphTitle }}</h5>
  </div>
</template>