diff --git a/src/components/Game.vue b/src/components/Game.vue index 5a470fd..03c1728 100644 --- a/src/components/Game.vue +++ b/src/components/Game.vue @@ -47,13 +47,16 @@ :modelValue="main.creditsOpen.value" @update:model-value="value => (main.creditsOpen.value = value)" > - credits go here - + --> + + @@ -78,6 +82,7 @@ import Scene from "data/Scene.vue"; import type { GenericLayer } from "game/layers"; import { layers } from "game/layers"; import player from "game/player"; +import { convertComputable } from "util/computed"; import { computeOptionalComponent } from "util/vue"; import { computed, toRef, unref } from "vue"; import Layer from "./Layer.vue"; @@ -94,7 +99,7 @@ function gatherLayerProps(layer: GenericLayer) { const { display, minimized, minWidth, name, color, minimizable, nodes, minimizedDisplay } = layer; return { display, minimized, minWidth, name, color, minimizable, nodes, minimizedDisplay }; -} +};