updated role menu

This commit is contained in:
Warunee Tamkoo 2024-02-06 11:58:23 +07:00
parent 6f861c0027
commit 429e2bde32
9 changed files with 8 additions and 7 deletions

View file

@ -0,0 +1,10 @@
interface Pagination {
rowsPerPage: number;
}
interface DataOption {
id: string;
name: string;
}
export type { Pagination, DataOption };

View file

@ -0,0 +1,14 @@
interface DataSumCalendarObject {
id: number;
monthFull: String;
count: number;
color: String;
}
interface DataListsObject {
id: number;
count: number;
name: string;
}
export type { DataSumCalendarObject, DataListsObject };

View file

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

View file

View file

@ -0,0 +1,7 @@
<template>
ทะเบยนประว (ใหม)
</template>
<script setup lang="ts"></script>
<style scoped></style>