2017-09-10 17:25:29 +05:30
|
|
|
import Vue from 'vue';
|
2018-03-17 18:26:18 +05:30
|
|
|
import Dashboard from './components/dashboard.vue';
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
export default () => new Vue({
|
2017-09-10 17:25:29 +05:30
|
|
|
el: '#prometheus-graphs',
|
2018-03-17 18:26:18 +05:30
|
|
|
render: createElement => createElement(Dashboard),
|
|
|
|
});
|