summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/monitoring_bundle.js
blob: ef280e0209279e1cb75b8239dc93592019078fe2 (plain)
1
2
3
4
5
6
7
8
9
10
import Vue from 'vue';
import Dashboard from './components/dashboard.vue';

document.addEventListener('DOMContentLoaded', () => new Vue({
  el: '#prometheus-graphs',
  components: {
    Dashboard,
  },
  render: createElement => createElement('dashboard'),
}));