🎉 Initial New Design Project

This commit is contained in:
2024-03-12 21:26:00 +08:00
parent a2635a49f6
commit 920efd3021
45 changed files with 347 additions and 2108 deletions

View File

@@ -0,0 +1,15 @@
import { createRouter, createWebHistory } from "vue-router"
import MasterLayout from "@/layouts/master.vue"
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: "/",
component: MasterLayout,
children: [{ path: "/", name: "dashboard", component: () => import("@/views/dashboard.vue") }],
},
],
})
export default router