App.vue 416 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. data () {
  10. return {
  11. }
  12. },
  13. methods: {
  14. }
  15. }
  16. </script>
  17. <style>
  18. #app {
  19. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  20. -webkit-font-smoothing: antialiased;
  21. -moz-osx-font-smoothing: grayscale;
  22. text-align: center;
  23. color: #2c3e50;
  24. height: 100%
  25. }
  26. html,body{
  27. height:100%
  28. }
  29. </style>