🎉 Создал рабочий фронтенд

Можно играть
This commit is contained in:
2021-03-27 20:24:07 +03:00
parent 13cabe7c43
commit affebed337
6 changed files with 144 additions and 75 deletions

View File

@@ -1,26 +1,36 @@
<template>
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
<h1>🎰 Flex Bingo 🎰</h1>
<Game id="game" />
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
import Game from './components/Game.vue'
export default {
name: 'App',
components: {
HelloWorld
Game
}
}
</script>
<style>
body {
margin: 0px;
background-color: #5a5a5a;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
color: #f3f3f3;
margin-top: 60px;
}
#game {
margin-left: 25%;
margin-bottom: 100px;
}
</style>