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: c3b0ef7e9ca1ff1258c9ab1a6a84719e22c8dd29 (plain)
1
2
3
4
5
6
7
import Vue from 'vue';
import Dashboard from './components/dashboard.vue';

export default () => new Vue({
  el: '#prometheus-graphs',
  render: createElement => createElement(Dashboard),
});