App.vue 292 B

123456789101112131415161718
  1. <template>
  2. <div id="app"><router-view /></div>
  3. </template>
  4. <script>
  5. export default {
  6. name: "app"
  7. };
  8. </script>
  9. <style>
  10. #app {
  11. font-family: "Avenir", Helvetica, Arial, sans-serif;
  12. -webkit-font-smoothing: antialiased;
  13. -moz-osx-font-smoothing: grayscale;
  14. color: #2c3e50;
  15. }
  16. </style>