feat: add admin panel (#31)

* feat: add admin panel

* feature: update limit
This commit is contained in:
Dream Hunter
2023-10-09 10:03:15 -05:00
committed by GitHub
parent 0f74bde850
commit 5cfc78d70d
15 changed files with 343 additions and 10 deletions
+12
View File
@@ -0,0 +1,12 @@
<script setup>
import { NSpace } from 'naive-ui'
import Header from './Header.vue';
import Content from './Content.vue';
</script>
<template>
<n-space vertical>
<Header />
<Content />
</n-space>
</template>