Add predictor demo

This commit is contained in:
2018-06-17 11:39:31 +03:00
parent 28b29eefde
commit 2abb969639
8 changed files with 2534 additions and 2160 deletions

View File

@ -0,0 +1,7 @@
import Vue from 'vue';
import Demo from './Demo.vue';
new Vue({
el: '#app',
render: h => h(Demo),
});