Made a channel page

This commit is contained in:
Kasper Rynning-Tønnesen
2019-12-03 16:22:38 +01:00
parent 70dd1cbeb1
commit d495d77245
10 changed files with 277 additions and 53 deletions

View File

@@ -1,4 +1,3 @@
export default {
namespaced: true,
state: {
@@ -18,16 +17,12 @@ export default {
PLAYING: 1,
UNSTARTED: -1
},
socket: null,
channel: "summér"
},
getters: {
channel: state => {
return state.channel;
},
socket: state => {
return state.socket
},
PLAYER_STATES: state => {
return state.PLAYER_STATES;
},