app/src/App.vue

28 lines
417 B
Vue

<template>
<div id="app">
<Timer time="60"/>
</div>
</template>
<script>
import Timer from './components/Timer.vue'
export default {
name: 'App',
components: {
Timer
}
}
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>