work on player

This commit is contained in:
bkfox
2020-10-27 20:52:46 +01:00
parent 2a0d0b1758
commit 063d1f194e
14 changed files with 477 additions and 200 deletions

View File

@ -5,14 +5,18 @@ export const defaultConfig = {
el: '#app',
delimiters: ['[[', ']]'],
computed: {
player() {
return window.aircox.player;
data() {
return {
page: null,
}
}
},
computed: {
player() { return window.aircox.player; }
},
}
export function App(config) {
export default function App(config) {
return (new AppConfig(config)).load()
}