feat: 添加钱包功能,创建钱包状态管理,更新个人资料页面,优化样式和交互

This commit is contained in:
2026-01-18 02:19:37 +07:00
parent 1bdaad1434
commit 967b87fc83
4 changed files with 140 additions and 116 deletions

5
auto-imports.d.ts vendored
View File

@@ -296,6 +296,7 @@ declare global {
const useVibrate: typeof import('@vueuse/core').useVibrate
const useVirtualList: typeof import('@vueuse/core').useVirtualList
const useWakeLock: typeof import('@vueuse/core').useWakeLock
const useWalletStore: typeof import('./src/store/wallet').useWalletStore
const useWebNotification: typeof import('@vueuse/core').useWebNotification
const useWebSocket: typeof import('@vueuse/core').useWebSocket
const useWebWorker: typeof import('@vueuse/core').useWebWorker
@@ -328,6 +329,9 @@ declare global {
// @ts-ignore
export type { Language } from './src/composables/useLanguage'
import('./src/composables/useLanguage')
// @ts-ignore
export type { Wallet } from './src/store/wallet'
import('./src/store/wallet')
}
// for vue template auto import
@@ -624,6 +628,7 @@ declare module 'vue' {
readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
readonly useWalletStore: UnwrapRef<typeof import('./src/store/wallet')['useWalletStore']>
readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>