App_20220530163629.vue 350 B

123456789101112131415161718192021222324
  1. <!--
  2. * @LastEditors: gcz
  3. -->
  4. <template>
  5. <div id="app">
  6. <router-view/>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'App'
  12. }
  13. </script>
  14. <style>
  15. #app {
  16. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. text-align: center;
  20. color: #2c3e50;
  21. }
  22. </style>