fix problem status.

This commit is contained in:
2023-04-06 14:28:35 +08:00
parent 48fc661205
commit 14c42c6744
9 changed files with 22 additions and 29 deletions

View File

@@ -2,9 +2,6 @@
import Login from "../Login.vue"
import Signup from "../Signup.vue"
import Header from "../Header.vue"
import { useConfigStore } from "../store/config"
const configStore = useConfigStore()
</script>
<template>
@@ -15,7 +12,6 @@ const configStore = useConfigStore()
<n-layout-content content-style="padding: 16px; overflow-x: initial">
<router-view></router-view>
</n-layout-content>
<p class="footer">{{ configStore.config?.website_footer }}</p>
<Login />
<Signup />
</n-layout>
@@ -25,8 +21,4 @@ const configStore = useConfigStore()
.header {
padding: 8px;
}
.footer {
text-align: center;
margin: 20px 0;
}
</style>