clone code

This commit is contained in:
Kittapath 2023-06-01 12:54:58 +07:00
parent c9597d1e38
commit d57bcd1719
362 changed files with 104804 additions and 0 deletions

View file

@ -0,0 +1 @@
export type {};

View file

@ -0,0 +1 @@
export type {};

View file

@ -0,0 +1 @@
export type {};

View file

@ -0,0 +1,18 @@
/**
* Router (Retirement)
*/
const Main = () => import("@/modules/06_retirement/views/Main.vue");
export default [
{
path: "/retirement",
name: "retirement",
component: Main,
meta: {
Auth: true,
Key: [7],
Role: "retirement",
},
},
];

View file

@ -0,0 +1,5 @@
import { defineStore } from "pinia";
export const useRetirementDataStore = defineStore("retirement", () => {
return {};
});

View file

@ -0,0 +1,10 @@
<script setup lang="ts"></script>
<template>
<div class="toptitle text-dark col-12 row items-center">นจากราชการ</div>
<div>
<q-card flat bordered class="col-12 q-mt-sm"> </q-card>
</div>
</template>
<style lang="scss" scope></style>