diff --git a/src/components/GameWindow.vue b/src/components/GameWindow.vue index 4434200..a7e658e 100644 --- a/src/components/GameWindow.vue +++ b/src/components/GameWindow.vue @@ -6,9 +6,9 @@ import VueQrcode from '@chenfengyuan/vue-qrcode'; import BeltBlock from './BeltBlock.vue'; import MetalPlate from './MetalPlate.vue'; import GameHeader from './GameHeader.vue'; -import type { Action } from './action'; -import type { Door } from './door'; -import type { Team } from './team'; +import type { Action } from './models/action'; +import type { Door } from './models/door'; +import type { Team } from './models/team'; const router = useRouter(); const route = useRoute(); diff --git a/src/components/action.ts b/src/components/models/action.ts similarity index 100% rename from src/components/action.ts rename to src/components/models/action.ts diff --git a/src/components/application.ts b/src/components/models/application.ts similarity index 100% rename from src/components/application.ts rename to src/components/models/application.ts diff --git a/src/components/door.ts b/src/components/models/door.ts similarity index 100% rename from src/components/door.ts rename to src/components/models/door.ts diff --git a/src/components/team.ts b/src/components/models/team.ts similarity index 100% rename from src/components/team.ts rename to src/components/models/team.ts