work on logs, timetable, stats

This commit is contained in:
bkfox
2019-09-08 01:39:40 +02:00
parent 2d21ab2434
commit c68e21ee57
71 changed files with 19683 additions and 710 deletions

17
assets/public/app.js Normal file
View File

@ -0,0 +1,17 @@
import Vue from 'vue';
export var app = null;
export default app;
function loadApp() {
app = new Vue({
el: '#app',
delimiters: [ '[[', ']]' ],
})
}
window.addEventListener('load', loadApp);