App.vue 538 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <style lang="less">
  7. *{
  8. margin: 0;
  9. padding: 0;
  10. }
  11. html,body{
  12. width:100%;
  13. height:100%;
  14. /*background: #252a2f;*/
  15. background: #eeeeee;
  16. }
  17. #app {
  18. font-family: Avenir, Helvetica, Arial, sans-serif;
  19. -webkit-font-smoothing: antialiased;
  20. -moz-osx-font-smoothing: grayscale;
  21. /*text-align: center;*/
  22. color: #2c3e50;
  23. width: 100%;
  24. height: 100%;
  25. font-size:13px;
  26. }
  27. .flex-center{
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. }
  32. </style>