18 lines
237 B
Vue
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>
|