This repository has been archived on 2025-02-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
iu-quiz-app/pages/courses/_course.vue
2022-11-05 18:44:52 +01:00

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>