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
+19
View File
@@ -0,0 +1,19 @@
import { createRouter, createWebHistory } from 'vue-router'
import Index from '../views/Index.vue'
import Admin from '../views/Admin.vue'
const router = createRouter({
history: createWebHistory(),
routes: [
{
path: '/',
component: Index
},
{
path: '/admin',
component: Admin
}
]
})
export default router