From 4b180c6da0e735fc1e82612daebf4ac79e7b2edc Mon Sep 17 00:00:00 2001 From: NiuZiYuan Date: Wed, 30 Apr 2025 10:11:58 +0800 Subject: [PATCH] dev --- src/components/common/Calendar.vue | 82 ++++++++++++++++++++++++++++++ src/router/index.ts | 15 ++++++ src/views/dev/dev.vue | 12 +++++ 3 files changed, 109 insertions(+) create mode 100644 src/components/common/Calendar.vue create mode 100644 src/views/dev/dev.vue diff --git a/src/components/common/Calendar.vue b/src/components/common/Calendar.vue new file mode 100644 index 0000000..1782336 --- /dev/null +++ b/src/components/common/Calendar.vue @@ -0,0 +1,82 @@ + + + + + \ No newline at end of file diff --git a/src/router/index.ts b/src/router/index.ts index 27e3cf3..f581053 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -30,6 +30,21 @@ const router = createRouter({ ] }, + { + path: '/dev', + component: () => import('../views/Layout.vue'), + children: [ + { + path: "", + redirect: "/dev/dev", + }, + { + path: "dev", + component: () => import('../views/dev/dev.vue'), + } + + ] + }, { path: '/inventory', component: () => import('../views/LayoutInventory.vue'), diff --git a/src/views/dev/dev.vue b/src/views/dev/dev.vue new file mode 100644 index 0000000..5050aba --- /dev/null +++ b/src/views/dev/dev.vue @@ -0,0 +1,12 @@ + + + + + \ No newline at end of file