13 lines
196 B
TypeScript
13 lines
196 B
TypeScript
|
import { defineStore } from "pinia";
|
||
|
|
||
|
export const useWalletStore = defineStore('walletStore', {
|
||
|
state: () => {
|
||
|
return {
|
||
|
}
|
||
|
},
|
||
|
getters: {
|
||
|
|
||
|
},
|
||
|
actions: {
|
||
|
}
|
||
|
})
|