This commit is contained in:
Владимир Фёдоров 2026-03-21 00:37:58 +07:00
parent dd41cd08dd
commit 80d581e3b6
2 changed files with 10 additions and 5 deletions

View File

@ -8,15 +8,11 @@ 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';
const router = useRouter();
const route = useRoute();
type Team = {
name: string
actions: Action[]
}
const inputPlace = ref(false)
const login = ref("")
const password = ref("")

9
src/components/team.ts Normal file
View File

@ -0,0 +1,9 @@
import type { Action } from './action'
// Команда
export type Team = {
// Название
name: string
// Совершенные действия
actions: Action[]
}