cosmos-explorer/src/stores/useGroupStore.ts
2025-04-07 08:50:44 +08:00

10 lines
160 B
TypeScript

import { defineStore } from 'pinia';
export const useStoreName = defineStore('group', {
state: () => {
return {};
},
getters: {},
actions: {},
});