🎉 Initial Commit

This commit is contained in:
2023-12-10 21:58:23 +08:00
parent 7dba4810ef
commit 16aed743d9
24 changed files with 265 additions and 5502 deletions

View File

@ -0,0 +1,23 @@
<template>
<n-layout>
<n-layout-header class="py-[18.5px] px-[36px]" bordered>
<nuxt-link class="brand-header" to="/">
<brand-header />
</nuxt-link>
</n-layout-header>
<n-layout-content class="h-[calc(100vh-70px)]" content-style="padding: 24px">
<slot />
</n-layout-content>
</n-layout>
</template>
<script setup lang="ts">
import { NLayout, NLayoutHeader, NLayoutContent } from "naive-ui";
</script>
<style scoped>
.brand-header {
all: unset;
cursor: pointer;
}
</style>