hrms-mgt/src/modules/07_insignia/store.ts

10 lines
208 B
TypeScript
Raw Normal View History

2023-06-01 12:54:58 +07:00
import { defineStore } from "pinia";
2023-08-21 11:55:57 +07:00
import { ref, } from "vue";
2023-06-01 12:54:58 +07:00
export const useInsigniaDataStore = defineStore("insignia", () => {
2023-08-21 11:55:57 +07:00
let optionsTypeOc = ref<any>([]);
return {
optionsTypeOc
};
2023-06-01 12:54:58 +07:00
});