first commit

This commit is contained in:
Warunee Tamkoo 2023-09-06 14:51:44 +07:00
commit eb2f504652
32490 changed files with 5731109 additions and 0 deletions

View file

@ -0,0 +1,7 @@
<template>
<div class="toptitle text-dark col-12 row items-center">
อการเขาสระบบ (Login)
<q-space />
</div>
</template>

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 ManualHomePage = () => import("@/modules/01_manual/views/Main.vue");
export default [
{
path: "/manual",
name: "manual",
component: ManualHomePage,
meta: {
Auth: true,
Key: [1],
Role: "metadata",
},
},
];

View file

View file

@ -0,0 +1,10 @@
<script setup lang="ts">
import LoginPage from "@/modules/01_manual/components/01_login.vue";
</script>
<template>
<div>
<LoginPage />
</div>
</template>