App.vue 276 B

123456789101112131415
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style lang="scss">
  7. #app {
  8. font-family: Avenir, Helvetica, Arial, sans-serif;
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. text-align: center;
  12. color: #2c3e50;
  13. }
  14. </style>