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

monitoring_bundle.js « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d5cb56af72c397560ed347ff48ec75602e8c68a (plain)
1
2
3
4
5
6
7
8
9
10
import Vue from 'vue';
import Monitoring from './components/monitoring.vue';

document.addEventListener('DOMContentLoaded', () => new Vue({
  el: '#prometheus-graphs',
  components: {
    'monitoring-dashboard': Monitoring,
  },
  render: createElement => createElement('monitoring-dashboard'),
}));