debian-mirror-gitlab/app/assets/javascripts/monitoring/monitoring_bundle.js

11 lines
300 B
JavaScript
Raw Normal View History

2017-09-10 17:25:29 +05:30
import Vue from 'vue';
import Monitoring from './components/monitoring.vue';
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
document.addEventListener('DOMContentLoaded', () => new Vue({
el: '#prometheus-graphs',
components: {
'monitoring-dashboard': Monitoring,
},
render: createElement => createElement('monitoring-dashboard'),
}));