6 lines
119 B
TypeScript
6 lines
119 B
TypeScript
|
|
import { defineStore } from "pinia";
|
||
|
|
|
||
|
|
export const useDataStore = defineStore("commandStore", () => {
|
||
|
|
return {};
|
||
|
|
});
|