25 lines
489 B
Vue
25 lines
489 B
Vue
<script setup lang="ts">
|
|
import Login from "../Login.vue"
|
|
import Signup from "../Signup.vue"
|
|
import Header from "../Header.vue"
|
|
</script>
|
|
|
|
<template>
|
|
<n-layout>
|
|
<n-layout-header bordered class="header">
|
|
<Header />
|
|
</n-layout-header>
|
|
<n-layout-content content-style="padding: 16px; overflow-x: initial">
|
|
<router-view></router-view>
|
|
</n-layout-content>
|
|
<Login />
|
|
<Signup />
|
|
</n-layout>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.header {
|
|
padding: 8px;
|
|
}
|
|
</style>
|