gitlab-org--gitlab-foss/app/assets/javascripts/monitoring/monitoring_bundle.js

11 lines
300 B
JavaScript
Raw Normal View History

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