เพิ่มหน้ารายการทะเบียนประวัติ (ใหม่)

This commit is contained in:
Warunee Tamkoo 2024-03-04 12:46:42 +07:00
parent cd5647cb10
commit 1e73bd6133
2 changed files with 21 additions and 0 deletions

View file

@ -1,4 +1,5 @@
const mainPage = () => import("@/modules/04_registryNew/views/main.vue");
const listPage = () => import("@/modules/04_registryNew/views/list.vue");
export default [
{
@ -11,4 +12,14 @@ export default [
Role: "organization",
},
},
{
path: "/registry-new/list",
name: "registryNewList",
component: listPage,
meta: {
Auth: true,
Key: [7],
Role: "organization",
},
},
];

View file

@ -0,0 +1,10 @@
<script setup lang="ts">
</script>
<template>
<div class="toptitle text-dark col-12 row items-center">
อมลทะเบยนประว
</div>
</template>
<style scoped></style>