期初数据前台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

App.vue 393B

12345678910111213141516171819202122232425262728293031
  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>
  12. #app {
  13. font-family: Avenir, Helvetica, Arial, sans-serif;
  14. -webkit-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. color: #2c3e50;
  17. padding: 0;
  18. margin: 0;
  19. }
  20. * {
  21. box-sizing: border-box;
  22. }
  23. body {
  24. margin: 0;
  25. padding: 0;
  26. }
  27. </style>