_level.vue 480 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <v-row justify="center">
  3. <chapter-header />
  4. <v-col cols="12">
  5. <v-container fluid>
  6. <nuxt-child />
  7. </v-container>
  8. </v-col>
  9. </v-row>
  10. </template>
  11. <script lang="ts">
  12. import Vue from 'vue'
  13. import ChapterHeader from '~/components/learning/ChapterHeader.vue'
  14. export default Vue.extend({
  15. components: {
  16. ChapterHeader
  17. }
  18. })
  19. </script>
  20. <style>
  21. .v-application code {
  22. color: unset;
  23. box-shadow: unset;
  24. font-weight: unset;
  25. }
  26. </style>