9 lines
207 B
TypeScript
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
|
|
};
|
|
});
|