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

10 lines
207 B
TypeScript
Raw Normal View History

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