cosmos-explorer/src/stores/useWalletStore.ts

13 lines
196 B
TypeScript
Raw Normal View History

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