App.vue 476 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div id="app">
  3. <!-- <img src="./assets/logo.png"> -->
  4. <router-view/>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'App'
  10. }
  11. </script>
  12. <style>
  13. html,body{
  14. height: 100%;
  15. }
  16. #app {
  17. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. text-align: center;
  21. color: #2c3e50;
  22. min-width: 1365px;
  23. margin: 0 auto;
  24. height: 100%;
  25. background-color: #eaebf0;
  26. }
  27. </style>