vue-shovel/src/old/App.vue
Norman Köhring 959aa53138 package updates and fixed surrounding detection
* also a nicer running animation
2025-03-13 16:02:50 +01:00

32 lines
436 B
Vue

<template>
<div id="building-game">
<Field />
</div>
</template>
<script>
import Field from './Field'
export default {
name: 'building-game',
components: { Field },
data () {
return {
}
}
}
</script>
<style>
html,body,#app {
display: flex;
flex-flow: column nowrap;
justify-content: center;
width: 100vw;
height: 100vh;
background: black;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>