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

graph_group.vue « components « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 958f537d31b34bb0d337d4a18b0082f2fecc0a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script>
export default {
  props: {
    name: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <div class="panel panel-default prometheus-panel">
    <div class="panel-heading">
      <h4>{{name}}</h4>
    </div>
    <div class="panel-body prometheus-graph-group">
      <slot />
    </div>
  </div>
</template>