App.vue
396 Bytes
<template>
<div>
<Speech/>
</div>
</template>
<style lang="stylus">
#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>
<script>
import Speech from './components/Speech'
export default {
name: 'app',
components: {
Speech
}
}
</script>