App.vue 329 B

12345678910111213141516171819
  1. <template>
  2. <div id="app"><router-view /></div>
  3. </template>
  4. <script>
  5. export default {
  6. name: "App",
  7. };
  8. </script>
  9. <style scoped>
  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. background-color: #ecf0f5;
  16. }
  17. </style>