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
|
|
|
});
|