| 1234567891011121314151617181920212223242526272829 |
- <template>
- <v-row justify="center">
- <chapter-header />
- <v-col cols="12">
- <v-container fluid>
- <nuxt-child />
- </v-container>
- </v-col>
- </v-row>
- </template>
- <script lang="ts">
- import Vue from 'vue'
- import ChapterHeader from '~/components/learning/ChapterHeader.vue'
- export default Vue.extend({
- components: {
- ChapterHeader
- }
- })
- </script>
- <style>
- .v-application code {
- color: unset;
- box-shadow: unset;
- font-weight: unset;
- }
- </style>
|