basic ui, some filters

This commit is contained in:
2019-01-21 20:39:56 +01:00
parent e76aafc35a
commit 6394f2a869
30 changed files with 974 additions and 111 deletions

View File

@@ -1,11 +1,9 @@
import Vue from 'vue';
import Graph from './Components/Graph.vue';
import graph from './graph';
import App from './Components/App.vue';
new Vue({
el: '#app',
render(h) {
return h(Graph, {props: {graph}})
}
return h(App)
},
})