22 lines
373 B
Vue
22 lines
373 B
Vue
<template>
|
|
<v-container fluid fill-height>
|
|
<NuxtChild />
|
|
</v-container>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
courseID: undefined
|
|
}
|
|
},
|
|
created () {
|
|
this.courseID = this.$route.params.course
|
|
if (!this.$store.state.user.games[this.courseID]) {
|
|
this.$store.commit('initCourse', this.courseID)
|
|
}
|
|
}
|
|
}
|
|
</script>
|