upgrade vue 3.2 to 3.4

This commit is contained in:
Warunee Tamkoo 2024-01-24 16:51:53 +07:00
parent 1f8c166175
commit 9d28a3f03f
5 changed files with 51 additions and 1 deletions

View file

@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from "vue-router";
const MainLayout = () => import("@/views/MainLayout.vue");
const Dashboard = () => import("@/modules/01_dashboard/views/Dashboard.vue");
const TestPage = () => import("@/modules/01_dashboard/views/test.vue");
import ModuleTransfer from "@/modules/02_transfer/router";
import ModuleRetire from "@/modules/03_retire/router";
@ -29,6 +30,15 @@ const router = createRouter({
Key: [7],
},
},
{
path: "/test",
name: "test",
component: TestPage,
meta: {
Auth: true,
Key: [7],
},
},
...ModuleTransfer,
...ModuleRetire,
...ModuleCheckin,