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

28
assets/public/index.js Normal file
View File

@ -0,0 +1,28 @@
/**
* This module includes code available for both the public website and
* administration interface)
*/
//-- vendor
import Vue from 'vue';
import '@fortawesome/fontawesome-free/css/all.min.css';
import '@fortawesome/fontawesome-free/css/fontawesome.min.css';
import 'buefy/dist/buefy.css';
//-- aircox
import app from './app';
import LiveInfo from './liveInfo';
import './styles.scss';
import Player from './player.vue';
Vue.component('a-player', Player)
window.aircox = {
app: app,
LiveInfo: LiveInfo,
}