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