32 lines
436 B
Vue
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>
|