2024-09-04 13:54:50 +07:00
|
|
|
import { defineStore } from "pinia";
|
2024-09-06 16:42:40 +07:00
|
|
|
import { ref } from "vue";
|
2024-09-04 13:54:50 +07:00
|
|
|
|
|
|
|
|
export const useDataStore = defineStore("commandStore", () => {
|
2024-09-06 16:42:40 +07:00
|
|
|
const currentTab = ref<string>("order");
|
|
|
|
|
return {
|
|
|
|
|
currentTab
|
|
|
|
|
};
|
2024-09-04 13:54:50 +07:00
|
|
|
});
|