Files
gpt-load/web/src/components/Layout.vue
2025-07-02 20:44:30 +08:00

29 lines
602 B
Vue

<script setup lang="ts">
import Logout from "@/components/Logout.vue";
import NavBar from "@/components/NavBar.vue";
</script>
<template>
<n-layout>
<n-layout-header class="flex items-center">
<h1 class="layout-header-title">T.COM</h1>
<nav-bar />
<logout />
</n-layout-header>
<n-layout-content class="layout-content" content-style="padding: 24px;">
<router-view />
</n-layout-content>
</n-layout>
</template>
<style scoped>
.layout-header-title {
margin-top: 0;
margin-bottom: 8px;
margin-right: 20px;
}
.layout-content {
width: 100%;
}
</style>