App.vue 336 B

123456789101112131415161718192021
  1. <template>
  2. <div id="app"></div>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'App',
  7. components: {},
  8. };
  9. </script>
  10. <style>
  11. #app {
  12. font-family: Avenir, Helvetica, Arial, sans-serif;
  13. -webkit-font-smoothing: antialiased;
  14. -moz-osx-font-smoothing: grayscale;
  15. text-align: center;
  16. color: #2c3e50;
  17. margin-top: 60px;
  18. }
  19. </style>