7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
|
|
import { defineStore } from "pinia";
|
||
|
|
|
||
|
|
// store
|
||
|
|
export const useDevelopmentDataStore = defineStore("developmentDataStore", () => {
|
||
|
|
return {};
|
||
|
|
});
|