b041321a35
This change implements Application Statistics API
22 lines
368 B
JavaScript
22 lines
368 B
JavaScript
import Vue from 'vue';
|
|
import StatisticsPanelApp from './components/app.vue';
|
|
import createStore from './store';
|
|
|
|
export default function(el) {
|
|
if (!el) {
|
|
return false;
|
|
}
|
|
|
|
const store = createStore();
|
|
|
|
return new Vue({
|
|
el,
|
|
store,
|
|
components: {
|
|
StatisticsPanelApp,
|
|
},
|
|
render(h) {
|
|
return h(StatisticsPanelApp);
|
|
},
|
|
});
|
|
}
|