debian-mirror-gitlab/app/assets/javascripts/monitoring/monitoring_bundle.js
2017-09-10 17:25:29 +05:30

10 lines
300 B
JavaScript

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'),
}));