mirror of
https://github.com/Kugelschieber/breach.git
synced 2026-01-18 12:00:25 +00:00
51 lines
1.2 KiB
Vue
51 lines
1.2 KiB
Vue
<template>
|
|
<main>
|
|
<Level :level="level" />
|
|
<Timer />
|
|
<Buffer />
|
|
<Matrix />
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {defineComponent, provide, ref} from "vue";
|
|
import Level from "./components/Level.vue";
|
|
import Timer from "./components/Timer.vue";
|
|
import Buffer from "./components/Buffer.vue";
|
|
import Matrix from "./components/Matrix.vue";
|
|
import { Game } from "./game/Game";
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
Level,
|
|
Timer,
|
|
Buffer,
|
|
Matrix
|
|
},
|
|
setup() {
|
|
const game = ref(new Game({
|
|
matrix: [
|
|
"AA", "BB", "CC",
|
|
"DD", "AA", "BB",
|
|
"CC", "DD", "DD",
|
|
],
|
|
sequences: [
|
|
["AA", "CC", "DD"],
|
|
],
|
|
maxBufferLength: 3,
|
|
timeoutMilliseconds: 60_000,
|
|
}));
|
|
provide("game", game);
|
|
const level = ref(1);
|
|
|
|
return {
|
|
level
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import "@/sass/main.scss";
|
|
</style>
|