blob: 2568b75246fe9b221f45d15d509c43d9b5f46928 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import Vue from 'vue';
import WaveRendererComponent from './components/wave_renderer';
import StatusComponent from './components/status';
/* global window */
const internals = {};
/**
* The main vue application, it is composed by the other components, no real
* logic otherwise
*
* @class SortingHat
*/
internals.SortingHat = {
start() {
this.vm = new Vue({
el: '#sorting-hat',
components: {
waveRenderer: WaveRendererComponent,
status: StatusComponent
}
});
}
};
// Instantiates the app
internals.run = function () {
internals.SortingHat.start();
};
window.addEventListener('load', internals.run);
|