app/src/App.vue

31 lines
471 B
Vue
Raw Normal View History

2021-04-19 15:28:52 +02:00
<template>
<div id="app">
2021-04-19 22:46:31 +02:00
<Timer time="10"/>
2021-04-19 15:28:52 +02:00
</div>
</template>
<script>
2021-04-19 18:13:54 +02:00
import Timer from './components/Timer.vue'
2021-04-19 15:28:52 +02:00
export default {
name: 'App',
components: {
2021-04-19 18:13:54 +02:00
Timer
2021-04-19 15:28:52 +02:00
}
}
</script>
<style>
2021-04-19 22:46:31 +02:00
html, body {
height: 100%;
}
2021-04-19 15:28:52 +02:00
#app {
2021-04-19 22:46:31 +02:00
font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
2021-04-19 15:28:52 +02:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
2021-04-19 22:46:31 +02:00
height: 100%;
2021-04-19 15:28:52 +02:00
}
</style>