Welcome to mirror list, hosted at ThFree Co, Russian Federation.

monitoring_bundle.js « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 104432ef5de9e41dd4d07a61dc8347fb2fa7ccd2 (plain)
1
2
3
4
5
6
7
import Vue from 'vue';
import Dashboard from './components/dashboard.vue';

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