knowyt/client/src/pages/play.vue
2021-08-13 00:12:04 +02:00

18 lines
237 B
Vue

<template>
<div>
<GameControls />
<EngineDebug />
</div>
</template>
<script>
export default {
async mounted() {
await this.$engine.start()
},
async beforeDestroy() {
await this.$engine.stop()
},
}
</script>