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-03 15:32:22 +01:00

19 lines
257 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
}
}
</script>