UI หน้ารายการคำสั่งและ Template

This commit is contained in:
STW_TTTY\stwtt 2024-09-06 16:42:40 +07:00
parent 3b9df73811
commit 3556fb3cae
4 changed files with 684 additions and 5 deletions

View file

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