App.vue 518 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style lang="scss">
  12. * {
  13. box-sizing:border-box;
  14. }
  15. html,body {
  16. padding:0;
  17. margin:0;
  18. height:100vh;
  19. max-width:100%;
  20. max-height:100%;
  21. }
  22. #app {
  23. position:relative;
  24. padding:0;
  25. display:flex;
  26. height:100%;
  27. flex-flow:column;
  28. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  29. -webkit-font-smoothing: antialiased;
  30. -moz-osx-font-smoothing: grayscale;
  31. color: #2c3e50;
  32. }
  33. </style>