summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/monitoring_bundle.js
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'),
}));