cosmos-explorer/src/stores/useWalletStore.ts
2023-04-30 11:47:39 +08:00

13 lines
196 B
TypeScript

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