cosmos-explorer/src/stores/useWalletStore.ts

10 lines
168 B
TypeScript
Raw Normal View History

2023-05-06 14:56:04 +00:00
import { defineStore } from 'pinia';
2023-04-30 03:47:39 +00:00
export const useWalletStore = defineStore('walletStore', {
2023-05-06 14:56:04 +00:00
state: () => {
return {};
},
getters: {},
actions: {},
});