forked from LaconicNetwork/cosmos-explorer
10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
import { defineStore } from 'pinia';
|
|
|
|
export const useStoreName = defineStore('group', {
|
|
state: () => {
|
|
return {};
|
|
},
|
|
getters: {},
|
|
actions: {},
|
|
});
|