добавил footer и navbar
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
<template>
|
||||
<div>
|
||||
<NuxtLayout>
|
||||
<NuxtPage />
|
||||
</NuxtLayout>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -1 +1,5 @@
|
||||
@import 'bootstrap/scss/bootstrap';
|
||||
|
||||
html, body, #__nuxt {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<template>
|
||||
<div />
|
||||
<div class="container p-3">
|
||||
<span>© {{year}} Информационная система университета</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
|
||||
const year = new Date().getFullYear()
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<form class="d-flex my-2 my-lg-0">
|
||||
<!-- <form class="d-flex my-2 my-lg-0">
|
||||
<input
|
||||
class="form-control me-sm-2"
|
||||
type="text"
|
||||
@@ -61,7 +61,7 @@
|
||||
>
|
||||
Search
|
||||
</button>
|
||||
</form>
|
||||
</form> -->
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="d-flex flex-column min-vh-100">
|
||||
<AppHeader />
|
||||
<slot />
|
||||
<div class="container flex-fill">
|
||||
<slot />
|
||||
</div>
|
||||
<AppFooter />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user