fixing load data source

This commit is contained in:
Warunee Tamkoo 2024-10-10 14:48:22 +07:00
parent f1c9af0611
commit 45f77014da
3 changed files with 26 additions and 7 deletions

View file

@ -0,0 +1,9 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const useStructStore = defineStore("StructStore", () => {
const dataSource = ref();
return {
dataSource,
};
});