hrms-admin/src/modules/06_webservices/stores/manage.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 07dceb0f45 จักการ API
2025-08-07 18:09:18 +07:00

14 lines
436 B
TypeScript

import { defineStore } from "pinia";
import { ref } from "vue";
import type { DataOption } from "@/modules/06_webservices/interface/index/Main";
export const useDataStoreManage = defineStore("webservicesManage", () => {
const systemList = ref<DataOption[]>([{ id: "all", name: "ระบบทั้งหมด" }]);
const methodOptions = ["GET", "POST", "PUT", "DELETE"];
return {
systemList,
methodOptions,
};
});