App.vue 407 B

12345678910111213141516171819202122
  1. <template>
  2. <router-view></router-view>
  3. </template>
  4. <script lang="ts">
  5. import { Options, Vue } from 'vue-class-component';
  6. @Options({
  7. components: {
  8. },
  9. })
  10. export default class App extends Vue {}
  11. </script>
  12. <style>
  13. #app {
  14. font-family: Avenir, Helvetica, Arial, sans-serif;
  15. -webkit-font-smoothing: antialiased;
  16. -moz-osx-font-smoothing: grayscale;
  17. text-align: center;
  18. color: #2c3e50;
  19. }
  20. </style>