App_20220531171412.vue 381 B

12345678910111213141516171819202122232425
  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 lang='scss'>
  15. #app {
  16. position: relative;
  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: #fff;
  22. }
  23. </style>