debian-mirror-gitlab/app/assets/javascripts/monitoring/components/shared/prometheus_header.vue
2019-12-26 22:10:19 +05:30

15 lines
270 B
Vue

<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>