gitlab-org--gitlab-foss/app/assets/javascripts/monitoring/components/graph_group.vue

26 lines
497 B
Vue
Raw Normal View History

<script>
2018-03-27 15:19:20 -04:00
export default {
props: {
name: {
type: String,
required: true,
},
2018-03-27 15:19:20 -04:00
showPanels: {
type: Boolean,
required: false,
default: true,
},
},
};
</script>
<template>
2018-11-16 15:07:38 -05:00
<div v-if="showPanels" class="card prometheus-panel">
<div class="card-header">
2018-01-05 09:31:01 -05:00
<h4>{{ name }}</h4>
</div>
2018-11-16 15:07:38 -05:00
<div class="card-body prometheus-graph-group"><slot></slot></div>
</div>
2018-11-16 15:07:38 -05:00
<div v-else class="prometheus-graph-group"><slot></slot></div>
</template>