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