Skip to content
Snippets Groups Projects
article-no-toc.vue 389 B

<template>
    <VApp>
        <v-main style="min-height: 300px">
            <v-container>
                <slot />
                <NavPrevNext />
            </v-container>
        </v-main>
        <NavNavbar />
        <nav-back-to-top />
    </VApp>
</template>

<style scoped>
#app-footer {
    border-top: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
}
</style>