feat: 游戏列表组件+基础样式

This commit is contained in:
2026-06-18 10:15:13 +08:00
parent 33c2b31117
commit 3bc3cce62a
6 changed files with 258 additions and 10 deletions

8
components.d.ts vendored
View File

@@ -22,9 +22,11 @@ declare module 'vue' {
ElInput: typeof import('element-plus/es')['ElInput']
ElInputOtp: typeof import('element-plus/es')['ElInputOtp']
ElPopover: typeof import('element-plus/es')['ElPopover']
ElTooltip: typeof import('element-plus/es')['ElTooltip']
GameList: typeof import('./src/components/baseLayouts/GameList.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
UserBar: typeof import('./src/components/User/UserBar.vue')['default']
UserBar: typeof import('./src/components/baseLayouts/UserBar.vue')['default']
}
}
@@ -40,7 +42,9 @@ declare global {
const ElInput: typeof import('element-plus/es')['ElInput']
const ElInputOtp: typeof import('element-plus/es')['ElInputOtp']
const ElPopover: typeof import('element-plus/es')['ElPopover']
const ElTooltip: typeof import('element-plus/es')['ElTooltip']
const GameList: typeof import('./src/components/baseLayouts/GameList.vue')['default']
const RouterLink: typeof import('vue-router')['RouterLink']
const RouterView: typeof import('vue-router')['RouterView']
const UserBar: typeof import('./src/components/User/UserBar.vue')['default']
const UserBar: typeof import('./src/components/baseLayouts/UserBar.vue')['default']
}