30 lines
700 B
Vue
30 lines
700 B
Vue
<script setup lang="ts">
|
|
import Beian from "../components/Beian.vue"
|
|
import Header from "../components/Header.vue"
|
|
import Login from "../components/Login.vue"
|
|
import Signup from "../components/Signup.vue"
|
|
</script>
|
|
|
|
<template>
|
|
<n-layout position="absolute">
|
|
<n-layout-header bordered class="header">
|
|
<Header />
|
|
</n-layout-header>
|
|
<n-layout-content content-style="padding: 16px; overflow-x: initial; max-width: 2000px; margin: 0 auto;">
|
|
<router-view></router-view>
|
|
</n-layout-content>
|
|
<Login />
|
|
<Signup />
|
|
<Beian />
|
|
</n-layout>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.header {
|
|
padding: 8px;
|
|
max-width: 2000px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
</style>
|