水果贪吃蛇
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
435 B

<template>
<div class="playground">
<ScoreBoard />
<GameMap />
</div>
</template>
<script>
import ScoreBoard from '@/components/ScoreBoard';
import GameMap from '@/components/GameMap';
export default {
name: "PlayGround",
components: {
ScoreBoard,
GameMap
}
}
</script>
<style scoped>
.playground {
width: 100%;
height: 100%;
background-color: #578A34;
}
</style>