App.vue 410 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. components: {},
  10. data() {
  11. return {};
  12. },
  13. watch: {},
  14. methods: {}
  15. }
  16. </script>
  17. <style>
  18. #app {
  19. font-family: Avenir, Helvetica, Arial, sans-serif;
  20. -webkit-font-smoothing: antialiased;
  21. -moz-osx-font-smoothing: grayscale;
  22. text-align: center;
  23. color: #2c3e50;
  24. height: 100%;
  25. }
  26. </style>