38 lines
649 B
Vue
38 lines
649 B
Vue
<template>
|
|
<div class="fs-wrapper">
|
|
<navbar />
|
|
<div class="fs-content">
|
|
<router-view />
|
|
</div>
|
|
<toasts-list />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
import Navbar from "@/components/Navbar.vue";
|
|
import ToastsList from "@/components/toast/ToastsList.vue";
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
Navbar,
|
|
ToastsList
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.fs-wrapper {
|
|
position: relative;
|
|
.fs-content {
|
|
margin-top: 70px;
|
|
min-height: calc(100vh - 70px);
|
|
display: flex;
|
|
align-items: stretch;
|
|
> * {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
</style>
|