hrms-admin/src/modules/05_command/stores/main.ts

9 lines
207 B
TypeScript

import { defineStore } from "pinia";
import { ref } from "vue";
export const useDataStore = defineStore("commandStore", () => {
const currentTab = ref<string>("order");
return {
currentTab
};
});